mirror of
https://github.com/php/php-src.git
synced 2025-08-16 22:18:50 +02:00
64 bit corrections to parameters to OnUpdateInt Bug #20994 (Dave)
This commit is contained in:
parent
70f97c1713
commit
1edf7f55e5
5 changed files with 8 additions and 8 deletions
|
@ -54,10 +54,10 @@ PHP_FUNCTION(pfpro_process); /* Transaction processing */
|
||||||
ZEND_BEGIN_MODULE_GLOBALS(pfpro)
|
ZEND_BEGIN_MODULE_GLOBALS(pfpro)
|
||||||
int initialized;
|
int initialized;
|
||||||
char *defaulthost;
|
char *defaulthost;
|
||||||
int defaultport;
|
long defaultport;
|
||||||
int defaulttimeout;
|
long defaulttimeout;
|
||||||
char *proxyaddress;
|
char *proxyaddress;
|
||||||
int proxyport;
|
long proxyport;
|
||||||
char *proxylogon;
|
char *proxylogon;
|
||||||
char *proxypassword;
|
char *proxypassword;
|
||||||
ZEND_END_MODULE_GLOBALS(pfpro)
|
ZEND_END_MODULE_GLOBALS(pfpro)
|
||||||
|
|
|
@ -30,7 +30,7 @@ PHP_FUNCTION(confirm_extname_compiled); /* For testing, remove later. */
|
||||||
and END macros here:
|
and END macros here:
|
||||||
|
|
||||||
ZEND_BEGIN_MODULE_GLOBALS(extname)
|
ZEND_BEGIN_MODULE_GLOBALS(extname)
|
||||||
int global_value;
|
long global_value;
|
||||||
char *global_string;
|
char *global_string;
|
||||||
ZEND_END_MODULE_GLOBALS(extname)
|
ZEND_END_MODULE_GLOBALS(extname)
|
||||||
*/
|
*/
|
||||||
|
|
|
@ -57,7 +57,7 @@ PHP_FUNCTION(yaz_get_option);
|
||||||
|
|
||||||
ZEND_BEGIN_MODULE_GLOBALS(yaz)
|
ZEND_BEGIN_MODULE_GLOBALS(yaz)
|
||||||
int assoc_seq;
|
int assoc_seq;
|
||||||
int max_links;
|
long max_links;
|
||||||
char *log_file;
|
char *log_file;
|
||||||
ZEND_END_MODULE_GLOBALS(yaz)
|
ZEND_END_MODULE_GLOBALS(yaz)
|
||||||
|
|
||||||
|
|
|
@ -31,8 +31,8 @@ ZEND_BEGIN_MODULE_GLOBALS(zlib)
|
||||||
uLong crc;
|
uLong crc;
|
||||||
int ob_gzhandler_status;
|
int ob_gzhandler_status;
|
||||||
int ob_gzip_coding;
|
int ob_gzip_coding;
|
||||||
int output_compression;
|
long output_compression;
|
||||||
int output_compression_level;
|
long output_compression_level;
|
||||||
char *output_handler;
|
char *output_handler;
|
||||||
ZEND_END_MODULE_GLOBALS(zlib)
|
ZEND_END_MODULE_GLOBALS(zlib)
|
||||||
|
|
||||||
|
|
|
@ -59,7 +59,7 @@ struct _php_core_globals {
|
||||||
zend_bool allow_call_time_pass_reference;
|
zend_bool allow_call_time_pass_reference;
|
||||||
zend_bool implicit_flush;
|
zend_bool implicit_flush;
|
||||||
|
|
||||||
int output_buffering;
|
long output_buffering;
|
||||||
|
|
||||||
char *safe_mode_include_dir;
|
char *safe_mode_include_dir;
|
||||||
zend_bool safe_mode_gid;
|
zend_bool safe_mode_gid;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue