From: Derick Rethans Date: Thu, 20 Feb 2003 10:33:55 +0000 (+0000) Subject: - Fixed copy and paste bug X-Git-Tag: RELEASE_0_5~847 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=91766d4b9a5972eb0220adf8dd1c2037e383b4d9;p=php - Fixed copy and paste bug --- 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);