mirror of
https://github.com/php/php-src.git
synced 2026-03-24 00:02:20 +01:00
64 bit corrections to parameters to OnUpdateInt Bug #20994 (Dave)
This commit is contained in:
@@ -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)
|
||||
|
||||
@@ -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)
|
||||
*/
|
||||
|
||||
@@ -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)
|
||||
|
||||
|
||||
@@ -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)
|
||||
|
||||
|
||||
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user