Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
Joe Martin
OpenLDAP
Commits
0240fd96
Commit
0240fd96
authored
Nov 05, 2013
by
Howard Chu
Committed by
Quanah Gibson-Mount
Nov 05, 2013
Browse files
ITS#7739 fix for empty nested include
parent
9b9cc5d6
Changes
1
Hide whitespace changes
Inline
Side-by-side
servers/slapd/bconfig.c
View file @
0240fd96
...
...
@@ -6550,7 +6550,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
]);
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment