From eef667fd49911b50c18fd87bf2cc8b9e86ffee0d Mon Sep 17 00:00:00 2001 From: Howard Chu Date: Tue, 5 Nov 2013 07:34:30 -0800 Subject: [PATCH] ITS#7739 fix for empty nested include --- servers/slapd/bconfig.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/servers/slapd/bconfig.c b/servers/slapd/bconfig.c index f9b5531e8b..e12a89aeb8 100644 --- a/servers/slapd/bconfig.c +++ b/servers/slapd/bconfig.c @@ -6803,7 +6803,7 @@ config_build_schema_inc( ConfigArgs *c, CfEntryInfo *ceparent, for (; cf; cf=cf->c_sibs, c->depth++) { if ( !cf->c_at_head && !cf->c_cr_head && !cf->c_oc_head && - !cf->c_om_head && !cf->c_syn_head ) continue; + !cf->c_om_head && !cf->c_syn_head && !cf->c_kids ) continue; c->value_dn.bv_val = c->log; LUTIL_SLASHPATH( cf->c_file.bv_val ); bv.bv_val = strrchr(cf->c_file.bv_val, LDAP_DIRSEP[0]); -- 2.39.5