From 961b9ef8c560353dc2bbc4b8a902e8de4904ca06 Mon Sep 17 00:00:00 2001 From: Chris Cormack Date: Fri, 22 Mar 2013 10:51:31 +1300 Subject: [PATCH] Bug 7973 : Follow up to remove an extraneous my Signed-off-by: Katrin Fischer Fixes problem found by QA scripts. Signed-off-by: Jared Camins-Esakov --- C4/Auth_with_ldap.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/C4/Auth_with_ldap.pm b/C4/Auth_with_ldap.pm index d29d8e8ad5..1f2f617d6a 100644 --- a/C4/Auth_with_ldap.pm +++ b/C4/Auth_with_ldap.pm @@ -119,7 +119,7 @@ sub checkpw_ldap { $userldapentry = $search->shift_entry; # Perform a LDAP bind for the given username using the matched DN - my $res = $db->bind( $userldapentry->dn, password => $password ); + $res = $db->bind( $userldapentry->dn, password => $password ); if ( $res->code ) { $debug and warn "LDAP bind failed as kohauser $userid: ". description($res); return 0; -- 2.39.2