]> git.sur5r.net Git - openldap/commitdiff
function rename
authorLuke Howard <lukeh@openldap.org>
Fri, 22 Jul 2005 02:51:55 +0000 (02:51 +0000)
committerLuke Howard <lukeh@openldap.org>
Fri, 22 Jul 2005 02:51:55 +0000 (02:51 +0000)
servers/slapd/slapi/slapi_overlay.c

index b985831e071a7b6af108e57cd866424daeb6d770..764a03e7aac1eb305d3d14cb1c236d89c6233b75 100644 (file)
@@ -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;