Skip to content
Snippets Groups Projects
Commit 820fa8fe authored by Quanah Gibson-Mount's avatar Quanah Gibson-Mount
Browse files

If the change set becomes empty, prevent other overlays from executing and

return a success.
parent a9ec03e7
No related branches found
No related tags found
No related merge requests found
......@@ -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);
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment