diff options
author | David Hill <ddhill@php.net> | 2003-03-10 14:50:16 +0000 |
---|---|---|
committer | David Hill <ddhill@php.net> | 2003-03-10 14:50:16 +0000 |
commit | 1edf7f55e593540a91b218c46e5ee4bf8fea4ae6 (patch) | |
tree | 278f57219c882cd6c45a0fc185372841ee5f686b | |
parent | 70f97c1713434a33c9ae01a17f50d9d3492de0f1 (diff) | |
download | php-git-1edf7f55e593540a91b218c46e5ee4bf8fea4ae6.tar.gz |
64 bit corrections to parameters to OnUpdateInt Bug #20994 (Dave)
-rw-r--r-- | ext/pfpro/php_pfpro.h | 6 | ||||
-rw-r--r-- | ext/skeleton/php_skeleton.h | 2 | ||||
-rw-r--r-- | ext/yaz/php_yaz.h | 2 | ||||
-rw-r--r-- | ext/zlib/php_zlib.h | 4 | ||||
-rw-r--r-- | main/php_globals.h | 2 |
5 files changed, 8 insertions, 8 deletions
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; |