diff options
author | Pascal Rigaux <pixel@mandriva.com> | 2003-09-01 12:34:43 +0000 |
---|---|---|
committer | Pascal Rigaux <pixel@mandriva.com> | 2003-09-01 12:34:43 +0000 |
commit | 30b881dc48fbcd78093970540164b39fb5667563 (patch) | |
tree | 5fc1bd39f5f1311c2416234904ea6ea9d7143192 /MDK/Common/System.pm | |
parent | 06700528d93b76b4b130b494d6a1f0d2c89dde88 (diff) | |
download | perl-MDK-Common-30b881dc48fbcd78093970540164b39fb5667563.tar perl-MDK-Common-30b881dc48fbcd78093970540164b39fb5667563.tar.gz perl-MDK-Common-30b881dc48fbcd78093970540164b39fb5667563.tar.bz2 perl-MDK-Common-30b881dc48fbcd78093970540164b39fb5667563.tar.xz perl-MDK-Common-30b881dc48fbcd78093970540164b39fb5667563.zip |
MDK::Common::System::list_users() should list user 500 if it exists
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(); } |