mirror of
https://git.proxmox.com/git/pve-access-control
synced 2025-08-15 08:19:30 +00:00
grammar fix: s/does not exists/does not exist/g
Signed-off-by: Thomas Lamprecht <t.lamprecht@proxmox.com>
This commit is contained in:
parent
3dd692e9cb
commit
3443faca75
@ -536,7 +536,7 @@ __PACKAGE__->register_method ({
|
||||
if !defined($password);
|
||||
my $domain_cfg = cfs_read_file('domains.cfg');
|
||||
my $cfg = $domain_cfg->{ids}->{$realm};
|
||||
die "auth domain '$realm' does not exists\n" if !$cfg;
|
||||
die "auth domain '$realm' does not exist\n" if !$cfg;
|
||||
my $plugin = PVE::Auth::Plugin->lookup($cfg->{type});
|
||||
$plugin->authenticate_user($cfg, $realm, $ruid, $password);
|
||||
}
|
||||
|
@ -533,7 +533,7 @@ sub authenticate_user {
|
||||
my $domain_cfg = cfs_read_file('domains.cfg');
|
||||
|
||||
my $cfg = $domain_cfg->{ids}->{$realm};
|
||||
die "auth domain '$realm' does not exists\n" if !$cfg;
|
||||
die "auth domain '$realm' does not exist\n" if !$cfg;
|
||||
my $plugin = PVE::Auth::Plugin->lookup($cfg->{type});
|
||||
$plugin->authenticate_user($cfg, $realm, $ruid, $password);
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user