From: Pierangelo Masarati Date: Fri, 22 Jul 2005 16:37:20 +0000 (+0000) Subject: exit the loop at some point (ITS#3878) X-Git-Tag: OPENLDAP_AC_BP~241 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=9cb512bc03b55447e75ef81d537ad644a479feeb;p=openldap exit the loop at some point (ITS#3878) --- 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;