From 9ec2c33e9d5a18e53643e9b40d1f567efbd6e10f Mon Sep 17 00:00:00 2001 From: David Hill Date: Mon, 10 Mar 2003 13:35:36 +0000 Subject: [PATCH] 64-bit corrections to parameters to OnUpdateInt Bug #20994 (Dave) @64-bit corrections to parameters to OnUpdateInt Bug #20994 (Dave) --- ext/pfpro/php_pfpro.h | 6 +++--- ext/skeleton/php_skeleton.h | 2 +- ext/yaz/php_yaz.h | 2 +- ext/zlib/php_zlib.h | 4 ++-- 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 458de163b4..02fe6dd1f5 100644 --- a/ext/yaz/php_yaz.h +++ b/ext/yaz/php_yaz.h @@ -55,7 +55,7 @@ PHP_FUNCTION(yaz_schema); 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 ee13919bf7..07cc122f59 100644 --- a/main/php_globals.h +++ b/main/php_globals.h @@ -57,7 +57,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; -- 2.40.0