Blob Blame History Raw
--- src/eiciel_main_controller.cpp.orig	2011-04-27 15:19:07.450533036 -0700
+++ src/eiciel_main_controller.cpp	2011-04-27 15:19:34.563281597 -0700
@@ -51,7 +51,7 @@
 	setpwent();
 	while((u = getpwent()) != NULL)
 	{
-		if (_show_system || (u->pw_uid >= 1000))
+		if (_show_system || (u->pw_uid >= 500))
 		{
 			_users_list.insert(u->pw_name);
 		}
@@ -64,7 +64,7 @@
 	setgrent();
 	while ((g = getgrent()) != NULL)
 	{
-		if (_show_system || (g->gr_gid >= 1000))
+		if (_show_system || (g->gr_gid >= 500))
 		{
 			_groups_list.insert(g->gr_name);
 		}