]> git.proxmox.com Git - pve-access-control.git/blobdiff - PVE/AccessControl.pm
grammar fix: s/does not exists/does not exist/g
[pve-access-control.git] / PVE / AccessControl.pm
index 4e9deea87ae6be7802fc0c6b00953f3fb2b0f4ea..823d1c58c1d35f1e3a57457c47d45674627fe757 100644 (file)
@@ -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);