Skip to content
Snippets Groups Projects
Commit 5164359c authored by Ralf Haferkamp's avatar Ralf Haferkamp Committed by Quanah Gibson-Mount
Browse files

Fixed insertion of the overlay_remove callback (SLAP_CONFIG_DELETE)

parent f99332fe
No related branches found
No related tags found
No related merge requests found
......@@ -1214,8 +1214,12 @@ overlay_remove( BackendDB *be, slap_overinst *on, Operation *op )
rm_cb->sc_private = (void*) rm_ctx;
/* Append callback to the end of the list */
for ( cb = op->o_callback; cb->sc_next; cb = cb->sc_next );
cb->sc_next = rm_cb;
if ( !op->o_callback ) {
op->o_callback = rm_cb;
} else {
for ( cb = op->o_callback; cb->sc_next; cb = cb->sc_next );
cb->sc_next = rm_cb;
}
}
#endif /* SLAP_CONFIG_DELETE */
......
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