Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
Tero Saarni
OpenLDAP
Commits
f4a186ef
Commit
f4a186ef
authored
Sep 05, 2008
by
Quanah Gibson-Mount
Browse files
ITS#5684
parent
c8f5588d
Changes
2
Hide whitespace changes
Inline
Side-by-side
CHANGES
View file @
f4a186ef
...
...
@@ -6,6 +6,7 @@ OpenLDAP 2.4.12 Engineering
Fixed slapd aci performance (ITS#5636)
Fixed slapd aci's with sets (ITS#5627)
Fixed slapd attribute leak (ITS#5683)
Fixed slapd config backend with index greater than sibs (ITS#5684)
Fixed slapd custom attribute inheritance (ITS#5642)
Fixed slapd dynacl mask handling (ITS#5637)
Fixed slapd firstComponentMatch normalization (ITS#5634)
...
...
servers/slapd/bconfig.c
View file @
f4a186ef
...
...
@@ -3881,7 +3881,7 @@ check_name_index( CfEntryInfo *parent, ConfigType ce_type, Entry *e,
if
(
isconfig
&&
index
==
-
1
)
{
index
=
0
;
}
if
(
!
isfrontend
&&
index
==
-
1
)
{
if
(
(
!
isfrontend
&&
index
==
-
1
)
||
(
index
>
nsibs
)
)
{
index
=
nsibs
;
}
...
...
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