From: Pierangelo Masarati Date: Sat, 14 Mar 2009 16:27:59 +0000 (+0000) Subject: don't short circuit callback list X-Git-Tag: ACLCHECK_0~685 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=3f58df73a526f2fbaf5dae480619afaeb80a58da;p=openldap don't short circuit callback list --- diff --git a/contrib/slapd-modules/cloak/cloak.c b/contrib/slapd-modules/cloak/cloak.c index 5e4f11d0e5..6dfb7d3e56 100644 --- a/contrib/slapd-modules/cloak/cloak.c +++ b/contrib/slapd-modules/cloak/cloak.c @@ -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;