diff options
author | David Hill <ddhill@php.net> | 2003-03-06 23:07:28 +0000 |
---|---|---|
committer | David Hill <ddhill@php.net> | 2003-03-06 23:07:28 +0000 |
commit | 5c90216d2ce8d8cc8d1453eee1a1e5099bd46631 (patch) | |
tree | 588ccc95099ca43c0bf46f8078fcb77fefa2f765 /ext/ldap | |
parent | 0338111950edcec427cfa2f1610dd6efcd43a14c (diff) | |
download | php-git-5c90216d2ce8d8cc8d1453eee1a1e5099bd46631.tar.gz |
64-bit correction to variables passed to zend_parse_parameters
@64-bit correction to variables passed to zend_parse_parameters (Dave)
Diffstat (limited to 'ext/ldap')
-rw-r--r-- | ext/ldap/ldap.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ext/ldap/ldap.c b/ext/ldap/ldap.c index a4dbca40bc..5d34d9ccba 100644 --- a/ext/ldap/ldap.c +++ b/ext/ldap/ldap.c @@ -345,11 +345,11 @@ PHP_FUNCTION(ldap_connect) { char *host = NULL; int hostlen; - int port = 389; /* Default port */ + long port = 389; /* Default port */ #ifdef HAVE_ORALDAP char *wallet, *walletpasswd; int walletlen, walletpasswdlen; - int authmode; + long authmode; int ssl=0; #endif ldap_linkdata *ld; |