Skip to content
Snippets Groups Projects
Commit 7fb90589 authored by Howard Chu's avatar Howard Chu
Browse files

Fix replog check

parent c8ca3e2a
No related branches found
No related tags found
No related merge requests found
......@@ -585,8 +585,7 @@ refint_response(
dd.message = "_dependent_modify";
/* See if the parent operation is going into the replog */
cbo = NULL;
for (cbp = op->o_callback->sc_next; cbp; cbo=cbp,cbp=cbp->sc_next) {
for (cbo=op->o_callback, cbp = cbo->sc_next; cbp; cbo=cbp,cbp=cbp->sc_next) {
if (cbp->sc_response == slap_replog_cb) {
/* Invoke replog now, arrange for our
* dependent mods to also be logged
......
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