diff --git a/src/manager.c b/src/manager.c index 3771c99..b832df7 100644 --- a/src/manager.c +++ b/src/manager.c @@ -211,11 +211,13 @@ static pid_t run_command_as(const gchar* command, const gchar* username) g_critical("run_command_as: Unable to call setgid: %s", strerror(errno)); exit(1); } + /* g_debug("run_command_as: setgroups: %d", numgroups); for(int i = 0; i < numgroups; i++) { g_debug("run_command_as: group: %d \n", g_list[i]); } + */ if (setgroups(numgroups, g_list) == -1) { g_critical("run_command_as: Unable to call setgroups: %s", strerror(errno));