]> granicus.if.org Git - php/commitdiff
- Fixed bug #41511 (Compile failure under IRIX 6.5.30 building md5.c)
authorfoobar <sniper@php.net>
Sun, 27 May 2007 14:50:09 +0000 (14:50 +0000)
committerfoobar <sniper@php.net>
Sun, 27 May 2007 14:50:09 +0000 (14:50 +0000)
NEWS
ext/standard/md5.c
ext/standard/sha1.c

diff --git a/NEWS b/NEWS
index a082992eb4996207da28591ff9bfd170769b45f4..4076db6cabb2541e2ebf6dae95555e383ff5c62a 100644 (file)
--- 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
index 3cf5fbaaea73e2502030106d8256d9ee523f533e..6e3f90999126b3f502fb4e345a6b80179ceaaebf 100644 (file)
@@ -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)
index 5f1ac43a5e2ec19b718d7e3303999078f95b2084..6d776bea7743ad6a576cf64ed9ac6b1b4fa52b54 100644 (file)
@@ -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])