turn off root check in cygwin for now

This commit is contained in:
Erik Ekman 2009-01-24 17:04:24 +00:00 committed by Erik Ekman
parent 97bf71e944
commit 6de3368f39

View File

@ -90,11 +90,13 @@ int setgroups(int count, int *groups)
void
check_superuser(void (*usage_fn)(void))
{
#ifndef __CYGWIN__
if (geteuid() != 0) {
warnx("Run as root and you'll be happy.\n");
usage_fn();
/* NOTREACHED */
}
#endif
}
int