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
808e8f25
Commit
808e8f25
authored
Sep 03, 2008
by
Quanah Gibson-Mount
Browse files
ITS#5578
parent
581b1b52
Changes
2
Hide whitespace changes
Inline
Side-by-side
CHANGES
View file @
808e8f25
...
...
@@ -10,6 +10,7 @@ OpenLDAP 2.4.12 Engineering
Added slapd caseIgnoreListMatch (ITS#5608)
Fixed slapd overlay control registration (ITS#5649)
Fixed slapd socket closing on Windows (ITS#5606)
Fixed slapd sortvals comparison (ITS#5578)
Fixed slapd syncrepl error logging (ITS#5618)
Fixed slapd-bdb entry return if attr not present (ITS#5650)
Fixed slapd-ldap,slapd-meta invalid filter behavior (ITS#5614)
...
...
servers/slapd/attr.c
View file @
808e8f25
...
...
@@ -404,7 +404,7 @@ attr_valadd(
rc
=
LDAP_TYPE_OR_VALUE_EXISTS
;
return
rc
;
}
for
(
j
=
a
->
a_numvals
;
j
>=
slot
;
j
--
)
{
for
(
j
=
a
->
a_numvals
;
j
>=
(
int
)
slot
;
j
--
)
{
a
->
a_vals
[
j
+
1
]
=
a
->
a_vals
[
j
];
if
(
nvals
)
a
->
a_nvals
[
j
+
1
]
=
a
->
a_nvals
[
j
];
...
...
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