some spacing fixes

This commit is contained in:
hyung-hwan 2021-09-03 17:45:24 +00:00
parent 6d243590d8
commit 586c664148

View File

@ -392,12 +392,11 @@ sub __handler
my $auth = -3;
if ($cfg->{login_model} eq 'LdapLoginModel')
{
$auth = authenticate_ldap ($r, $cfg, $userid, $password);
$auth = authenticate_ldap($r, $cfg, $userid, $password);
}
elsif ($cfg->{login_model} eq 'DbLoginModel')
{
($auth, $errmsg) = authenticate_database (
$dbh, $cfg->{database_prefix}, $userid, $password, $qc);
($auth, $errmsg) = authenticate_database($dbh, $cfg->{database_prefix}, $userid, $password, $qc);
if ($auth <= -1)
{
$r->log_error ("Database error - $errmsg");
@ -468,7 +467,7 @@ sub handler: method
return Apache2::Const::HTTP_INTERNAL_SERVER_ERROR;
}
$res = __handler ($r, $cfg, $dbh);
$res = __handler($r, $cfg, $dbh);
close_database ($dbh);
return $res;