From 7b78bbad780cc7a90de1242763835af0c1f9efe1 Mon Sep 17 00:00:00 2001 From: Malfurious Date: Sun, 3 Oct 2021 05:57:41 -0400 Subject: config: Set user and group to 'nobody' 'nogroup' is not always found in a Linux system. In particular, it does not exist by default in Arch Linux. --- config.def.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config.def.h b/config.def.h index 9855e21..27cc2d0 100644 --- a/config.def.h +++ b/config.def.h @@ -1,6 +1,6 @@ /* user and group to drop privileges to */ static const char *user = "nobody"; -static const char *group = "nogroup"; +static const char *group = "nobody"; static const char *colorname[NUMCOLS] = { [INIT] = "black", /* after initialization */ -- cgit v1.2.3