From a9bfdcb82ce6da10f9cf9592f9fd58990388335a Mon Sep 17 00:00:00 2001 From: =?utf8?q?C=C3=B4me=20Bernigaud?= Date: Mon, 23 Nov 2015 03:08:02 +0100 Subject: [PATCH] Revert "Using default port in ldap_connect when NULL is passed (this was the behavior prior to 5.6.11)" This reverts commit 391087ed280f86f144ffa5a2b72eeeda3c271743. --- ext/ldap/ldap.c | 3 --- 1 file changed, 3 deletions(-) diff --git a/ext/ldap/ldap.c b/ext/ldap/ldap.c index 8b66ba44ca..64885c7cb7 100644 --- a/ext/ldap/ldap.c +++ b/ext/ldap/ldap.c @@ -349,9 +349,6 @@ PHP_FUNCTION(ldap_connect) RETURN_FALSE; } #endif - if (!port) { - port = LDAP_PORT; - } if (LDAPG(max_links) != -1 && LDAPG(num_links) >= LDAPG(max_links)) { php_error_docref(NULL TSRMLS_CC, E_WARNING, "Too many open links (%ld)", LDAPG(num_links)); -- 2.50.1