X-Git-Url: https://git.sur5r.net/?a=blobdiff_plain;f=servers%2Fslapd%2Funbind.c;h=d67d86181d55717c97db18228195d323cfffff33;hb=3bf9998d7885ef6bbc4690d4229e5cb5068a35de;hp=774253ef42083d5fa7b47f67c27ebd1600ba8b8a;hpb=d026e2c9f7a390b6adf9b03af3ee125c2cd52958;p=openldap diff --git a/servers/slapd/unbind.c b/servers/slapd/unbind.c index 774253ef42..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-2004 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; } +