Blob Blame History Raw
--- src/eiciel_main_controler.cpp.orig	2008-05-24 12:59:13.430750975 -0700
+++ src/eiciel_main_controler.cpp	2008-05-24 13:03:36.936000525 -0700
@@ -50,7 +50,7 @@
 	setpwent();
 	while((u = getpwent()) != NULL)
 	{
-		if (mostrarSystem || (u->pw_uid >= 1000))
+		if (mostrarSystem || (u->pw_uid >= 500))
 		{
 			llistatUsuaris.insert(u->pw_name);
 		}
@@ -63,7 +63,7 @@
 	setgrent();
 	while ((g = getgrent()) != NULL)
 	{
-		if (mostrarSystem || (g->gr_gid >= 1000))
+		if (mostrarSystem || (g->gr_gid >= 500))
 		{
 			llistatGrups.insert(g->gr_name);
 		}