Blame SOURCES/0001-discovery-fix.patch

3e55d6
From 08bac0946de29f3e5de90743ce6dfc7118d4ad20 Mon Sep 17 00:00:00 2001
3e55d6
From: Sumit Bose <sbose@redhat.com>
3e55d6
Date: Tue, 11 Feb 2020 17:42:03 +0100
3e55d6
Subject: [PATCH] discovery fix
3e55d6
3e55d6
Do not continue processing on closed connection.
3e55d6
3e55d6
Resolves: https://bugzilla.redhat.com/show_bug.cgi?id=1802258
3e55d6
---
3e55d6
 library/addisco.c | 1 +
3e55d6
 1 file changed, 1 insertion(+)
3e55d6
3e55d6
diff --git a/library/addisco.c b/library/addisco.c
3e55d6
index 6e73ead..f3b3546 100644
3e55d6
--- a/library/addisco.c
3e55d6
+++ b/library/addisco.c
3e55d6
@@ -622,6 +622,7 @@ ldap_disco (const char *domain,
3e55d6
 			                            "Couldn't perform discovery search");
3e55d6
 			ldap_unbind_ext_s (ldap[i], NULL, NULL);
3e55d6
 			ldap[i] = NULL;
3e55d6
+			continue;
3e55d6
 		}
3e55d6
 
3e55d6
 		/* From https://msdn.microsoft.com/en-us/library/ff718294.aspx first
3e55d6
-- 
3e55d6
2.26.2
3e55d6