Skip to content
Snippets Groups Projects
Commit 8e45ec5a authored by Howard Chu's avatar Howard Chu Committed by Quanah Gibson-Mount
Browse files

ITS#8752 accesslog: partially revert 3bb8b737

parent f8158aaa
No related branches found
No related tags found
No related merge requests found
......@@ -1986,11 +1986,11 @@ accesslog_op_mod( Operation *op, SlapReply *rs )
}
if ( doit ) {
slap_callback *cb = op->o_tmpcalloc( 1, sizeof( slap_callback ), op->o_tmpmemctx );
slap_callback *cb = op->o_tmpcalloc( 1, sizeof( slap_callback ), op->o_tmpmemctx ), *cb2;
cb->sc_cleanup = accesslog_mod_cleanup;
cb->sc_private = on;
cb->sc_next = op->o_callback;
op->o_callback = cb;
for ( cb2 = op->o_callback; cb2->sc_next; cb2 = cb2->sc_next );
cb2->sc_next = cb;
#ifdef RMUTEX_DEBUG
Debug( LDAP_DEBUG_SYNC,
......
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