mirror of
https://git.openldap.org/openldap/openldap.git
synced 2025-12-24 16:49:39 -05:00
don't short circuit callback list
This commit is contained in:
parent
14d4ca86e1
commit
3f58df73a5
1 changed files with 1 additions and 1 deletions
|
|
@ -270,7 +270,7 @@ cloak_search( Operation *op, SlapReply *rs )
|
|||
sc = op->o_tmpcalloc( 1, sizeof( *sc ), op->o_tmpmemctx );
|
||||
sc->sc_response = cloak_search_cb;
|
||||
sc->sc_cleanup = NULL;
|
||||
sc->sc_next = NULL;
|
||||
sc->sc_next = op->o_callback;
|
||||
sc->sc_private = ci;
|
||||
op->o_callback = sc;
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue