From: David Hill Date: Mon, 10 Mar 2003 14:50:16 +0000 (+0000) Subject: 64 bit corrections to parameters to OnUpdateInt Bug #20994 (Dave) X-Git-Tag: RELEASE_0_5~529 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=1edf7f55e593540a91b218c46e5ee4bf8fea4ae6;p=php 64 bit corrections to parameters to OnUpdateInt Bug #20994 (Dave) --- diff --git a/ext/pfpro/php_pfpro.h b/ext/pfpro/php_pfpro.h index 2ce9839767..1216b9aa3e 100644 --- a/ext/pfpro/php_pfpro.h +++ b/ext/pfpro/php_pfpro.h @@ -54,10 +54,10 @@ PHP_FUNCTION(pfpro_process); /* Transaction processing */ ZEND_BEGIN_MODULE_GLOBALS(pfpro) int initialized; char *defaulthost; - int defaultport; - int defaulttimeout; + long defaultport; + long defaulttimeout; char *proxyaddress; - int proxyport; + long proxyport; char *proxylogon; char *proxypassword; ZEND_END_MODULE_GLOBALS(pfpro) diff --git a/ext/skeleton/php_skeleton.h b/ext/skeleton/php_skeleton.h index 77cb8f3bd5..76ad225754 100644 --- a/ext/skeleton/php_skeleton.h +++ b/ext/skeleton/php_skeleton.h @@ -30,7 +30,7 @@ PHP_FUNCTION(confirm_extname_compiled); /* For testing, remove later. */ and END macros here: ZEND_BEGIN_MODULE_GLOBALS(extname) - int global_value; + long global_value; char *global_string; ZEND_END_MODULE_GLOBALS(extname) */ diff --git a/ext/yaz/php_yaz.h b/ext/yaz/php_yaz.h index 638c5e65cb..3b9066b54e 100644 --- a/ext/yaz/php_yaz.h +++ b/ext/yaz/php_yaz.h @@ -57,7 +57,7 @@ PHP_FUNCTION(yaz_get_option); ZEND_BEGIN_MODULE_GLOBALS(yaz) int assoc_seq; - int max_links; + long max_links; char *log_file; ZEND_END_MODULE_GLOBALS(yaz) diff --git a/ext/zlib/php_zlib.h b/ext/zlib/php_zlib.h index 1435e7043e..c399862dc1 100644 --- a/ext/zlib/php_zlib.h +++ b/ext/zlib/php_zlib.h @@ -31,8 +31,8 @@ ZEND_BEGIN_MODULE_GLOBALS(zlib) uLong crc; int ob_gzhandler_status; int ob_gzip_coding; - int output_compression; - int output_compression_level; + long output_compression; + long output_compression_level; char *output_handler; ZEND_END_MODULE_GLOBALS(zlib) diff --git a/main/php_globals.h b/main/php_globals.h index ddb940aa62..8cecb96447 100644 --- a/main/php_globals.h +++ b/main/php_globals.h @@ -59,7 +59,7 @@ struct _php_core_globals { zend_bool allow_call_time_pass_reference; zend_bool implicit_flush; - int output_buffering; + long output_buffering; char *safe_mode_include_dir; zend_bool safe_mode_gid;