scottmac                Sun Jun 21 22:19:19 2009 UTC

  Modified files:              (Branch: PHP_5_2)
    /php-src/ext/date   php_date.c 
  Log:
  MFH Fix bug #48276 - year is a long long so we need %lld so big endian 
systems print the correct value.
  
  
  
http://cvs.php.net/viewvc.cgi/php-src/ext/date/php_date.c?r1=1.43.2.45.2.71&r2=1.43.2.45.2.72&diff_format=u
Index: php-src/ext/date/php_date.c
diff -u php-src/ext/date/php_date.c:1.43.2.45.2.71 
php-src/ext/date/php_date.c:1.43.2.45.2.72
--- php-src/ext/date/php_date.c:1.43.2.45.2.71  Fri Jun  5 22:34:30 2009
+++ php-src/ext/date/php_date.c Sun Jun 21 22:19:19 2009
@@ -16,7 +16,7 @@
    +----------------------------------------------------------------------+
  */
 
-/* $Id: php_date.c,v 1.43.2.45.2.71 2009/06/05 22:34:30 rasmus Exp $ */
+/* $Id: php_date.c,v 1.43.2.45.2.72 2009/06/21 22:19:19 scottmac Exp $ */
 
 #include "php.h"
 #include "php_streams.h"
@@ -798,7 +798,7 @@
                        /* year */
                        case 'L': length = slprintf(buffer, 32, "%d", 
timelib_is_leap((int) t->y)); break;
                        case 'y': length = slprintf(buffer, 32, "%02d", (int) 
t->y % 100); break;
-                       case 'Y': length = slprintf(buffer, 32, "%s%04ld", t->y 
< 0 ? "-" : "", llabs(t->y)); break;
+                       case 'Y': length = slprintf(buffer, 32, "%s%04lld", 
t->y < 0 ? "-" : "", llabs(t->y)); break;
 
                        /* time */
                        case 'a': length = slprintf(buffer, 32, "%s", t->h >= 
12 ? "pm" : "am"); break;



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

Reply via email to