X-Git-Url: https://git.sur5r.net/?a=blobdiff_plain;f=servers%2Fslapd%2Funbind.c;h=d67d86181d55717c97db18228195d323cfffff33;hb=3bf9998d7885ef6bbc4690d4229e5cb5068a35de;hp=4dec901ce9a2c4a0974a5c71f8ddfd84ed4c09a1;hpb=dc0eacd40b625258355eea866d62188e5aa7ce3b;p=openldap diff --git a/servers/slapd/unbind.c b/servers/slapd/unbind.c index 4dec901ce9..d67d86181d 100644 --- a/servers/slapd/unbind.c +++ b/servers/slapd/unbind.c @@ -2,7 +2,7 @@ /* $OpenLDAP$ */ /* This work is part of OpenLDAP Software . * - * Copyright 1998-2005 The OpenLDAP Foundation. + * Copyright 1998-2008 The OpenLDAP Foundation. * All rights reserved. * * Redistribution and use in source and binary forms, with or without @@ -36,7 +36,8 @@ int do_unbind( Operation *op, SlapReply *rs ) { - Debug( LDAP_DEBUG_TRACE, "do_unbind\n", 0, 0, 0 ); + Debug( LDAP_DEBUG_TRACE, "%s do_unbind\n", + op->o_log_prefix, 0, 0 ); /* * Parse the unbind request. It looks like this: @@ -47,8 +48,15 @@ do_unbind( Operation *op, SlapReply *rs ) Statslog( LDAP_DEBUG_STATS, "%s UNBIND\n", op->o_log_prefix, 0, 0, 0, 0 ); + if ( frontendDB->be_unbind ) { + op->o_bd = frontendDB; + (void)frontendDB->be_unbind( op, rs ); + op->o_bd = NULL; + } + /* pass the unbind to all backends */ - backend_unbind( op, rs ); + (void)backend_unbind( op, rs ); return 0; } +