From e44619cea62f50d76ddb0324453370a702089164 Mon Sep 17 00:00:00 2001 From: Amy Gale Ruth Bowersox Date: Sun, 29 Aug 2021 22:31:55 -0600 Subject: [PATCH] may not need root privs anymore...test this --- src/config.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/config.c b/src/config.c index a2c0eee..7d2daec 100644 --- a/src/config.c +++ b/src/config.c @@ -208,11 +208,13 @@ HRESULT Config_setup(int argc, char *argv[]) HRESULT hr; GLOBAL_CONFIG from_commandline; +/* if (geteuid() != 0) { Log(LFATAL, "upiwin must be run with root privileges"); return E_ACCESSDENIED; } +*/ if (atexit(run_exit_funcs)) {