mirror of
https://git.openldap.org/openldap/openldap.git
synced 2025-02-23 14:09:39 +08: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
@ -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 New Issue
Block a user