tony2001 Mon Jan 26 10:25:32 2004 EDT Modified files: /php-src/ext/oci8 oci8.c Log: fix this annoying notice about limited range http://cvs.php.net/diff.php/php-src/ext/oci8/oci8.c?r1=1.241&r2=1.242&ty=u Index: php-src/ext/oci8/oci8.c diff -u php-src/ext/oci8/oci8.c:1.241 php-src/ext/oci8/oci8.c:1.242 --- php-src/ext/oci8/oci8.c:1.241 Mon Jan 26 10:21:52 2004 +++ php-src/ext/oci8/oci8.c Mon Jan 26 10:25:32 2004 @@ -22,7 +22,7 @@ +----------------------------------------------------------------------+ */ -/* $Id: oci8.c,v 1.241 2004/01/26 15:21:52 tony2001 Exp $ */ +/* $Id: oci8.c,v 1.242 2004/01/26 15:25:32 tony2001 Exp $ */ /* TODO list: * @@ -785,7 +785,7 @@ php_info_print_table_start(); php_info_print_table_row(2, "OCI8 Support", "enabled"); - php_info_print_table_row(2, "Revision", "$Revision: 1.241 $"); + php_info_print_table_row(2, "Revision", "$Revision: 1.242 $"); sprintf(buf, "%ld", num_persistent); php_info_print_table_row(2, "Active Persistent Links", buf); @@ -2649,7 +2649,7 @@ ) ); - smart_str_append_long_ex(&hashed_details, charsetid, 1); + smart_str_append_unsigned(&hashed_details, charsetid); charsetid = 0; }
-- PHP CVS Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php