From 30b881dc48fbcd78093970540164b39fb5667563 Mon Sep 17 00:00:00 2001 From: Pascal Rigaux Date: Mon, 1 Sep 2003 12:34:43 +0000 Subject: MDK::Common::System::list_users() should list user 500 if it exists --- MDK/Common/System.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'MDK/Common/System.pm') 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(); } -- cgit v1.2.1