mgdm                                     Tue, 23 Mar 2010 23:39:09 +0000

Revision: http://svn.php.net/viewvc?view=revision&revision=296692

Log:
Minor fix to constants registered in ext/hash, and update NEWS

Changed paths:
    U   php/php-src/trunk/NEWS
    U   php/php-src/trunk/ext/hash/hash.c

Modified: php/php-src/trunk/NEWS
===================================================================
--- php/php-src/trunk/NEWS      2010-03-23 22:21:39 UTC (rev 296691)
+++ php/php-src/trunk/NEWS      2010-03-23 23:39:09 UTC (rev 296692)
@@ -1,6 +1,7 @@
 PHP                                                                        NEWS
 |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
 ?? ??? 201?, PHP 5.3.99
+- Added FNV-1 hash support to ext/hash. (Michael Maclean)
 - default_charset if not specified is now UTF-8 instead of ISO-8859-1. (Rasmus)

 ?? ??? 20??, PHP 5.3.3

Modified: php/php-src/trunk/ext/hash/hash.c
===================================================================
--- php/php-src/trunk/ext/hash/hash.c   2010-03-23 22:21:39 UTC (rev 296691)
+++ php/php-src/trunk/ext/hash/hash.c   2010-03-23 23:39:09 UTC (rev 296692)
@@ -76,9 +76,9 @@
        {"SNEFRU256", "snefru256", 27},
        {"MD2", "md2", 28},
        {"FNV132", "fnv132", 29},
-       {"FNV1a32", "fnv1a32", 30},
+       {"FNV1A32", "fnv1a32", 30},
        {"FNV164", "fnv164", 31},
-       {"FNV1a64", "fnv1a64", 32},
+       {"FNV1A64", "fnv1a64", 32},
 };
 #endif


-- 
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to