summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMalfurious <m@lfurio.us>2021-10-03 05:57:41 -0400
committerMalfurious <m@lfurio.us>2023-06-01 21:23:44 -0400
commit7b78bbad780cc7a90de1242763835af0c1f9efe1 (patch)
tree6722b45138cef4a0396766f4cf1449a04cf2a7e3
parent4f045545a25cc02c64bfc08d27ed2ccecb962292 (diff)
downloadslock-7b78bbad780cc7a90de1242763835af0c1f9efe1.tar.gz
slock-7b78bbad780cc7a90de1242763835af0c1f9efe1.zip
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.
-rw-r--r--config.def.h2
1 files changed, 1 insertions, 1 deletions
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 */