From abdd4eba8b321e66d9a86d2d3592893f69632618 Mon Sep 17 00:00:00 2001 From: "bugreport%peshkin.net" <> Date: Mon, 12 Jul 2004 10:48:45 +0000 Subject: Backing out bug 241900 --- checksetup.pl | 11 ++++------- 1 file changed, 4 insertions(+), 7 deletions(-) (limited to 'checksetup.pl') diff --git a/checksetup.pl b/checksetup.pl index 9961009e8..51a1bb2f4 100755 --- a/checksetup.pl +++ b/checksetup.pl @@ -27,7 +27,6 @@ # Bradley Baetz # Tobias Burnus # Gervase Markham -# Erik Stambaugh # # # Direct any questions on this source code to @@ -1493,12 +1492,10 @@ END { $dbh->disconnect if $dbh } # Check for LDAP ########################################################################### -for my $verifymethod (split /,\s*/, Param('user_verify_method')) { - if ($verifymethod eq 'LDAP') { - my $netLDAP = have_vers("Net::LDAP", 0); - if (!$netLDAP && !$silent) { - print "If you wish to use LDAP authentication, then you must install Net::LDAP\n\n"; - } +if (Param('loginmethod') eq 'LDAP') { + my $netLDAP = have_vers("Net::LDAP", 0); + if (!$netLDAP && !$silent) { + print "If you wish to use LDAP authentication, then you must install Net::LDAP\n\n"; } } -- cgit v1.2.3-24-g4f1b