mirror of
https://git.openldap.org/openldap/openldap.git
synced 2025-12-24 08:39:37 -05:00
ITS#7739 fix for empty nested include
This commit is contained in:
parent
d14b05159e
commit
eef667fd49
1 changed files with 1 additions and 1 deletions
|
|
@ -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]);
|
||||
|
|
|
|||
Loading…
Reference in a new issue