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
openldap
OpenLDAP
Commits
b697550d
Commit
b697550d
authored
Mar 16, 2009
by
Emmanuel Dreyfus
Browse files
If the change set becomes empty, prevent other overlays from executing and
return a success.
parent
1d53acce
Changes
1
Hide whitespace changes
Inline
Side-by-side
contrib/slapd-modules/nops/nops.c
View file @
b697550d
...
...
@@ -136,8 +136,13 @@ nops_modify( Operation *op, SlapReply *rs )
}
if
((
m
=
op
->
orm_modlist
)
==
NULL
)
{
slap_callback
*
cb
=
op
->
o_callback
;
op
->
o_bd
->
bd_info
=
(
BackendInfo
*
)(
on
->
on_info
);
send_ldap_error
(
op
,
rs
,
LDAP_SUCCESS
,
""
);
op
->
o_callback
=
NULL
;
send_ldap_error
(
op
,
rs
,
LDAP_SUCCESS
,
""
);
op
->
o_callback
=
cb
;
return
(
rs
->
sr_err
);
}
...
...
Write
Preview
Supports
Markdown
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