mirror of
https://github.com/php/php-src.git
synced 2024-11-24 10:24:11 +08:00
- ldap_start_tls() requires ldapv3 protocol -> force it
This commit is contained in:
parent
c78db34489
commit
c245e1f0f7
@ -2017,7 +2017,7 @@ PHP_FUNCTION(ldap_start_tls)
|
||||
{
|
||||
zval **link;
|
||||
ldap_linkdata *ld;
|
||||
int rc;
|
||||
int rc, protocol = LDAP_VERSION3;
|
||||
|
||||
if (ZEND_NUM_ARGS() != 1 || zend_get_parameters_ex(1, &link) == FAILURE) {
|
||||
WRONG_PARAM_COUNT;
|
||||
@ -2025,7 +2025,9 @@ PHP_FUNCTION(ldap_start_tls)
|
||||
|
||||
ZEND_FETCH_RESOURCE(ld, ldap_linkdata *, link, -1, "ldap link", le_link);
|
||||
|
||||
if ((rc = ldap_start_tls_s(ld->link, NULL, NULL)) != LDAP_SUCCESS) {
|
||||
if (((rc = ldap_set_option(ld->link, LDAP_OPT_PROTOCOL_VERSION, &protocol)) != LDAP_SUCCESS) ||
|
||||
((rc = ldap_start_tls_s(ld->link, NULL, NULL)) != LDAP_SUCCESS)
|
||||
) {
|
||||
php_error_docref(NULL TSRMLS_CC, E_WARNING,"Unable to start TLS: %s", ldap_err2string(rc));
|
||||
RETURN_FALSE;
|
||||
} else {
|
||||
|
Loading…
Reference in New Issue
Block a user