From: foobar Date: Sun, 27 May 2007 14:50:09 +0000 (+0000) Subject: - Fixed bug #41511 (Compile failure under IRIX 6.5.30 building md5.c) X-Git-Tag: php-5.2.3~34 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=8588db4b46769a433dd3dc70af0584aff29d8db8;p=php - Fixed bug #41511 (Compile failure under IRIX 6.5.30 building md5.c) --- diff --git a/NEWS b/NEWS index a082992eb4..4076db6cab 100644 --- a/NEWS +++ b/NEWS @@ -1,7 +1,7 @@ PHP NEWS ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||| ?? Jun 2007, PHP 5.2.3 - +- Fixed bug #41511 (Compile failure under IRIX 6.5.30 building md5.c). (Jani) 24 May 2007, PHP 5.2.3RC1 - Changed CGI install target to php-cgi and 'make install' to install CLI diff --git a/ext/standard/md5.c b/ext/standard/md5.c index 3cf5fbaaea..6e3f909991 100644 --- a/ext/standard/md5.c +++ b/ext/standard/md5.c @@ -28,7 +28,7 @@ PHPAPI void make_digest(char *md5str, unsigned char *digest) { - return make_digest_ex(md5str, digest, strlen(digest)); + make_digest_ex(md5str, digest, strlen(digest)); } PHPAPI void make_digest_ex(char *md5str, unsigned char *digest, int len) diff --git a/ext/standard/sha1.c b/ext/standard/sha1.c index 5f1ac43a5e..6d776bea77 100644 --- a/ext/standard/sha1.c +++ b/ext/standard/sha1.c @@ -27,7 +27,7 @@ PHPAPI void make_sha1_digest(char *sha1str, unsigned char *digest) { - return make_digest_ex(sha1str, digest, 20); + make_digest_ex(sha1str, digest, 20); } /* {{{ proto string sha1(string str [, bool raw_output])