mirror of
https://github.com/yarrick/iodine.git
synced 2024-11-22 21:16:07 +03:00
turn off root check in cygwin for now
This commit is contained in:
parent
5352b5075e
commit
ad5c401762
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user