sniper Sun May 27 14:50:09 2007 UTC
Modified files: (Branch: PHP_5_2)
/php-src NEWS
/php-src/ext/standard md5.c sha1.c
Log:
- Fixed bug #41511 (Compile failure under IRIX 6.5.30 building md5.c)
http://cvs.php.net/viewvc.cgi/php-src/NEWS?r1=1.2027.2.547.2.735&r2=1.2027.2.547.2.736&diff_format=u
Index: php-src/NEWS
diff -u php-src/NEWS:1.2027.2.547.2.735 php-src/NEWS:1.2027.2.547.2.736
--- php-src/NEWS:1.2027.2.547.2.735 Fri May 25 12:35:33 2007
+++ php-src/NEWS Sun May 27 14:50:08 2007
@@ -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
http://cvs.php.net/viewvc.cgi/php-src/ext/standard/md5.c?r1=1.39.2.1.2.2&r2=1.39.2.1.2.3&diff_format=u
Index: php-src/ext/standard/md5.c
diff -u php-src/ext/standard/md5.c:1.39.2.1.2.2
php-src/ext/standard/md5.c:1.39.2.1.2.3
--- php-src/ext/standard/md5.c:1.39.2.1.2.2 Sat May 19 20:30:35 2007
+++ php-src/ext/standard/md5.c Sun May 27 14:50:09 2007
@@ -16,7 +16,7 @@
+----------------------------------------------------------------------+
*/
-/* $Id: md5.c,v 1.39.2.1.2.2 2007/05/19 20:30:35 iliaa Exp $ */
+/* $Id: md5.c,v 1.39.2.1.2.3 2007/05/27 14:50:09 sniper Exp $ */
/*
* md5.c - Copyright 1997 Lachlan Roche
@@ -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)
http://cvs.php.net/viewvc.cgi/php-src/ext/standard/sha1.c?r1=1.13.2.1.2.2&r2=1.13.2.1.2.3&diff_format=u
Index: php-src/ext/standard/sha1.c
diff -u php-src/ext/standard/sha1.c:1.13.2.1.2.2
php-src/ext/standard/sha1.c:1.13.2.1.2.3
--- php-src/ext/standard/sha1.c:1.13.2.1.2.2 Sat May 19 20:30:35 2007
+++ php-src/ext/standard/sha1.c Sun May 27 14:50:09 2007
@@ -16,7 +16,7 @@
+----------------------------------------------------------------------+
*/
-/* $Id: sha1.c,v 1.13.2.1.2.2 2007/05/19 20:30:35 iliaa Exp $ */
+/* $Id: sha1.c,v 1.13.2.1.2.3 2007/05/27 14:50:09 sniper Exp $ */
#include "php.h"
@@ -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])
--
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php