From: Luke Howard Date: Fri, 22 Jul 2005 02:51:55 +0000 (+0000) Subject: function rename X-Git-Tag: OPENLDAP_AC_BP~273 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=24f0ee316eb03dde9c5396781d687e09997e2941;p=openldap function rename --- diff --git a/servers/slapd/slapi/slapi_overlay.c b/servers/slapd/slapi/slapi_overlay.c index b985831e07..764a03e7aa 100644 --- a/servers/slapd/slapi/slapi_overlay.c +++ b/servers/slapd/slapi/slapi_overlay.c @@ -599,7 +599,7 @@ slapi_tag2op( ber_tag_t tag ) } static int -slapi_op_response( Operation *op, SlapReply *rs ) +slapi_over_response( Operation *op, SlapReply *rs ) { int rc; @@ -622,7 +622,7 @@ slapi_op_response( Operation *op, SlapReply *rs ) } static int -slapi_op_cleanup( Operation *op, SlapReply *rs ) +slapi_over_cleanup( Operation *op, SlapReply *rs ) { int rc; @@ -683,8 +683,8 @@ slapi_op_func( Operation *op, SlapReply *rs ) slapi_int_pblock_set_operation( pb, op ); - cb.sc_response = slapi_op_response; /* call pre-entry/result plugins */ - cb.sc_cleanup = slapi_op_cleanup; /* call post-entry/result plugins */ + cb.sc_response = slapi_over_response; /* call pre-entry/result plugins */ + cb.sc_cleanup = slapi_over_cleanup; /* call post-entry/result plugins */ cb.sc_private = opinfo; cb.sc_next = op->o_callback; op->o_callback = &cb;