From 91766d4b9a5972eb0220adf8dd1c2037e383b4d9 Mon Sep 17 00:00:00 2001 From: Derick Rethans Date: Thu, 20 Feb 2003 10:33:55 +0000 Subject: [PATCH] - Fixed copy and paste bug --- ext/standard/md5.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ext/standard/md5.c b/ext/standard/md5.c index 78f8c3141b..c833e09048 100644 --- a/ext/standard/md5.c +++ b/ext/standard/md5.c @@ -116,7 +116,7 @@ PHP_NAMED_FUNCTION(php_if_md5_file) fclose(fp); if (raw_output) { - RETURN_STRINGL(digest, 20, 1); + RETURN_STRINGL(digest, 16, 1); } else { make_digest(md5str, digest); RETVAL_STRING(md5str, 1); -- 2.50.1