We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c42a156 commit 20e6140Copy full SHA for 20e6140
ext/ldap/ldap.c
@@ -1023,7 +1023,7 @@ PHP_FUNCTION(ldap_connect_wallet) {
1023
char *wallet = NULL, *walletpasswd = NULL;
1024
size_t walletlen = 0, walletpasswdlen = 0;
1025
zend_long authmode = GSLC_SSL_NO_AUTH;
1026
- int ssl = 0;
+ bool ssl = false;
1027
1028
ldap_linkdata *ld;
1029
LDAP *ldap = NULL;
@@ -1035,7 +1035,7 @@ PHP_FUNCTION(ldap_connect_wallet) {
1035
}
1036
1037
if (authmode != 0) {
1038
- ssl = 1;
+ ssl = true;
1039
1040
1041
if (LDAPG(max_links) != -1 && LDAPG(num_links) >= LDAPG(max_links)) {
0 commit comments