X-Git-Url: https://git.sur5r.net/?a=blobdiff_plain;f=servers%2Fslapd%2Fback-monitor%2Fbind.c;h=037d2455dcbf5d69b1c37931e49b32b4b96bc14b;hb=d9edc7d5afd2860fac2fa0121044db28d94c9f7f;hp=304397f64554d1db1a91b3229ed96ea249bc1278;hpb=d611a4b49a00238ed32ae84c68f27c6a0ef2273a;p=openldap diff --git a/servers/slapd/back-monitor/bind.c b/servers/slapd/back-monitor/bind.c index 304397f645..037d2455dc 100644 --- a/servers/slapd/back-monitor/bind.c +++ b/servers/slapd/back-monitor/bind.c @@ -2,7 +2,7 @@ /* $OpenLDAP$ */ /* This work is part of OpenLDAP Software . * - * Copyright 2001-2004 The OpenLDAP Foundation. + * Copyright 2001-2011 The OpenLDAP Foundation. * Portions Copyright 2001-2003 Pierangelo Masarati. * All rights reserved. * @@ -33,23 +33,16 @@ int monitor_back_bind( Operation *op, SlapReply *rs ) { -#if 0 /* not used yet */ - struct monitorinfo *mi - = (struct monitorinfo *) op->o_bd->be_private; -#endif - Debug(LDAP_DEBUG_ARGS, "==> monitor_back_bind: dn: %s\n", op->o_req_dn.bv_val, 0, 0 ); - - if ( op->oq_bind.rb_method == LDAP_AUTH_SIMPLE - && be_isroot_pw( op ) ) { - ber_dupbv( &op->oq_bind.rb_edn, be_root_dn( op->o_bd ) ); - return( 0 ); + + if ( be_isroot_pw( op ) ) { + return LDAP_SUCCESS; } rs->sr_err = LDAP_INVALID_CREDENTIALS; send_ldap_result( op, rs ); - return( 1 ); + return rs->sr_err; }