From: Eric Covener Date: Sun, 4 Aug 2013 01:24:25 +0000 (+0000) Subject: remove nested retry loop, uldap_connection_open retries. X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=07bca2fa91ba86a55aba6789523a693aa420909a;p=thirdparty%2Fapache%2Fhttpd.git remove nested retry loop, uldap_connection_open retries. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1510086 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/modules/ldap/util_ldap.c b/modules/ldap/util_ldap.c index b275afe166a..a048e934bfd 100644 --- a/modules/ldap/util_ldap.c +++ b/modules/ldap/util_ldap.c @@ -1115,11 +1115,7 @@ start_over: } if (LDAP_SUCCESS != (result = uldap_connection_open(r, ldc))) { - if (AP_LDAP_IS_SERVER_DOWN(result)) { - failures++; - goto start_over; - } - /* something other than 'server down' */ + /* uldap_connection_open() retried already */ return result; }