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
b1dd8095
Commit
b1dd8095
authored
Jul 01, 2010
by
Quanah Gibson-Mount
Browse files
ITS#6581
parent
7fcc2a8b
Changes
2
Hide whitespace changes
Inline
Side-by-side
CHANGES
View file @
b1dd8095
OpenLDAP 2.4 Change Log
OpenLDAP 2.4.24 Engineering
Fixed slapd modify to return actual error (ITS#6581)
Fixed slapd-bdb entry cache delete failure (ITS#6577)
OpenLDAP 2.4.23 Release (2010/06/30)
...
...
servers/slapd/modify.c
View file @
b1dd8095
...
...
@@ -82,12 +82,14 @@ do_modify(
if
(
rs
->
sr_err
!=
LDAP_SUCCESS
)
{
Debug
(
LDAP_DEBUG_ANY
,
"%s do_modify: slap_parse_modlist failed err=%d msg=%s
\n
"
,
op
->
o_log_prefix
,
rs
->
sr_err
,
rs
->
sr_text
);
send_ldap_result
(
op
,
rs
);
goto
cleanup
;
}
if
(
get_ctrls
(
op
,
rs
,
1
)
!=
LDAP_SUCCESS
)
{
Debug
(
LDAP_DEBUG_ANY
,
"%s do_modify: get_ctrls failed
\n
"
,
op
->
o_log_prefix
,
0
,
0
);
/* get_ctrls has sent results. Now clean up. */
goto
cleanup
;
}
...
...
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