From 9cb512bc03b55447e75ef81d537ad644a479feeb Mon Sep 17 00:00:00 2001 From: Pierangelo Masarati Date: Fri, 22 Jul 2005 16:37:20 +0000 Subject: [PATCH] exit the loop at some point (ITS#3878) --- servers/slapd/backend.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/servers/slapd/backend.c b/servers/slapd/backend.c index e7fe8934c4..34d004d662 100644 --- a/servers/slapd/backend.c +++ b/servers/slapd/backend.c @@ -1633,7 +1633,7 @@ fe_aux_operational( ap = &(*ap)->a_next; } - if ( op->o_bd != NULL ) + if ( op->o_bd != NULL && op->o_bd != frontendDB ) { /* Let the overlays have a chance at this */ be_orig = op->o_bd; -- 2.39.5