Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
Joe Martin
OpenLDAP
Commits
06e298b8
Commit
06e298b8
authored
Mar 24, 2011
by
Quanah Gibson-Mount
Browse files
ITS#6858
parent
4cb65be2
Changes
2
Hide whitespace changes
Inline
Side-by-side
CHANGES
View file @
06e298b8
...
...
@@ -4,6 +4,7 @@ OpenLDAP 2.4.25 Engineering
Fixed tools for incompatible args (ITS#6849)
Fixed slapd add objectclasses in order (ITS#6837)
Added slapd ordering for uidNumber and gidNumber (ITS#6852)
Fixed slapd segfault when adding values out of order (ITS#6858)
Fixed slapd sortval handling (ITS#6845)
Fixed slapd-ldap chain cn=config support (ITS#6837)
Fixed slapd-ldap chain with slapd.conf (ITS#6857)
...
...
servers/slapd/bconfig.c
View file @
06e298b8
...
...
@@ -1626,7 +1626,8 @@ config_generic(ConfigArgs *c) {
int
i
;
for
(
i
=
0
,
oc
=
cfn
->
c_oc_head
;
i
<
c
->
valx
;
i
++
)
{
prev
=
oc
;
oc_next
(
&
oc
);
if
(
!
oc_next
(
&
oc
))
break
;
}
}
else
/* If adding the first, and head exists, find its prev */
...
...
@@ -1658,7 +1659,8 @@ config_generic(ConfigArgs *c) {
int
i
;
for
(
i
=
0
,
at
=
cfn
->
c_at_head
;
i
<
c
->
valx
;
i
++
)
{
prev
=
at
;
at_next
(
&
at
);
if
(
!
at_next
(
&
at
))
break
;
}
}
else
/* If adding the first, and head exists, find its prev */
...
...
@@ -1690,7 +1692,8 @@ config_generic(ConfigArgs *c) {
int
i
;
for
(
i
=
0
,
syn
=
cfn
->
c_syn_head
;
i
<
c
->
valx
;
i
++
)
{
prev
=
syn
;
syn_next
(
&
syn
);
if
(
!
syn_next
(
&
syn
))
break
;
}
}
else
/* If adding the first, and head exists, find its prev */
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a 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