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 /ext/pfpro | |
parent | 70f97c1713434a33c9ae01a17f50d9d3492de0f1 (diff) | |
download | php-git-1edf7f55e593540a91b218c46e5ee4bf8fea4ae6.tar.gz |
64 bit corrections to parameters to OnUpdateInt Bug #20994 (Dave)
Diffstat (limited to 'ext/pfpro')
-rw-r--r-- | ext/pfpro/php_pfpro.h | 6 |
1 files changed, 3 insertions, 3 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) |