mirror of
https://git.openldap.org/openldap/openldap.git
synced 2025-12-25 17:19:43 -05:00
If the change set becomes empty, prevent other overlays from executing and
return a success.
This commit is contained in:
parent
1d53acce70
commit
b697550ddc
1 changed files with 6 additions and 1 deletions
|
|
@ -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);
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue