X-Git-Url: https://git.sur5r.net/?a=blobdiff_plain;f=servers%2Fslapd%2Funbind.c;h=da6e1cd7c7dee198905a0fedfe04b2a14a5efd25;hb=04c5711506f17cc7403240c1f335527c6bccaa33;hp=f351e554099ecd8d24c883ed989640f627583023;hpb=8f02beada9ef54a5264baae6352fda7c7fbcb63b;p=openldap diff --git a/servers/slapd/unbind.c b/servers/slapd/unbind.c index f351e55409..da6e1cd7c7 100644 --- a/servers/slapd/unbind.c +++ b/servers/slapd/unbind.c @@ -22,7 +22,7 @@ #include "slap.h" -void +int do_unbind( Connection *conn, Operation *op @@ -36,9 +36,11 @@ do_unbind( * UnBindRequest ::= NULL */ - Statslog( LDAP_DEBUG_STATS, "conn=%d op=%d UNBIND\n", conn->c_connid, + Statslog( LDAP_DEBUG_STATS, "conn=%d op=%d UNBIND\n", op->o_connid, op->o_opid, 0, 0, 0 ); /* pass the unbind to all backends */ backend_unbind( conn, op ); + + return 0; }