sniper          Wed Sep  3 07:55:31 2003 EDT

  Modified files:              (Branch: PHP_4_3)
    /php-src    NEWS 
    /php-src/ext/standard       scanf.c 
  Log:
  MFH: - Fixed bug #25372 (sscanf() does not work with %X)
  
Index: php-src/NEWS
diff -u php-src/NEWS:1.1247.2.370 php-src/NEWS:1.1247.2.371
--- php-src/NEWS:1.1247.2.370   Mon Sep  1 21:30:11 2003
+++ php-src/NEWS        Wed Sep  3 07:55:29 2003
@@ -5,6 +5,7 @@
 - Fixed disk_total_space() and disk_free_space() under FreeBSD. (Jon Parise)
 - Fixed crash bug when non-existing save/serializer handler was used. (Jani)
 - Fixed memory leak in gethostbynamel() if an error occurs. (Sara)
+- Fixed bug #25372 (sscanf() does not work with %X). (Jani)
 - Fixed bug #25348 ("make install" fails with --enable-short-tags). (Jani)
 - Fixed bug #25343 (is_dir() gives warning on FreeBSD). (Jani)
 - Fixed bug #25308 (php -m crashes when zend extensions are loaded). (Stas)
Index: php-src/ext/standard/scanf.c
diff -u php-src/ext/standard/scanf.c:1.16.4.6 php-src/ext/standard/scanf.c:1.16.4.7
--- php-src/ext/standard/scanf.c:1.16.4.6       Thu Aug 28 12:01:49 2003
+++ php-src/ext/standard/scanf.c        Wed Sep  3 07:55:30 2003
@@ -16,7 +16,7 @@
    +----------------------------------------------------------------------+
 */
 
-/* $Id: scanf.c,v 1.16.4.6 2003/08/28 16:01:49 sas Exp $ */
+/* $Id: scanf.c,v 1.16.4.7 2003/09/03 11:55:30 sniper Exp $ */
 
 /*
    scanf.c --
@@ -789,6 +789,7 @@
                 fn = (long (*)())strtol;
                 break;
             case 'x':
+            case 'X':
                 op = 'i';
                 base = 16;
                 fn = (long (*)())strtol;

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

Reply via email to