From: Eric Covener Date: Sun, 4 Aug 2013 01:24:25 +0000 (+0000) Subject: remove nested retry loop, uldap_connection_open retries. X-Git-Tag: 2.5.0-alpha~5215 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=db3fd786f6b4f3e0df70af2d57f83c23bcb67391;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; }