mirror of
https://github.com/webmin/webmin.git
synced 2025-07-20 16:48:46 +00:00
Fix incorrect reference https://github.com/webmin/webmin/issues/673
This commit is contained in:
@ -46,7 +46,7 @@ elsif ($access{'mode'} == 5) {
|
||||
setpwent();
|
||||
my %doneu;
|
||||
while(local @u = getpwent()) {
|
||||
next if ($doneu{$u->[0]}++);
|
||||
next if ($doneu{$u[0]}++);
|
||||
if ($access{'mode'} == 0 ||
|
||||
$access{'mode'} == 1 && $ucan{$u[0]} ||
|
||||
$access{'mode'} == 2 && !$ucannot{$u[0]} ||
|
||||
|
Reference in New Issue
Block a user