diff options
Diffstat (limited to 'MDK/Common/System.pm')
-rw-r--r-- | MDK/Common/System.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/MDK/Common/System.pm b/MDK/Common/System.pm index 827bd54..de9e3d4 100644 --- a/MDK/Common/System.pm +++ b/MDK/Common/System.pm @@ -255,7 +255,7 @@ sub list_skels { } sub list_users() { - map { 500 < $_->[2] && $_->[0] ne "nobody" ? $_->[0] : () } list_passwd(); + map { 500 <= $_->[2] && $_->[0] ne "nobody" ? $_->[0] : () } list_passwd(); } |