From 07bca2fa91ba86a55aba6789523a693aa420909a Mon Sep 17 00:00:00 2001 From: Eric Covener Date: Sun, 4 Aug 2013 01:24:25 +0000 Subject: [PATCH] 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 --- modules/ldap/util_ldap.c | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) 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; } -- 2.47.3