From 9166655b4eb6f9a7d53e4a1c5a3f6ad20598f4ec Mon Sep 17 00:00:00 2001 From: tiyn Date: Tue, 22 Aug 2023 14:34:03 +0200 Subject: [PATCH] base: added base image --- Makefile | 2 +- config.def.h | 2 +- config.mk | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Makefile b/Makefile index f4ffbb7..b20fd4e 100644 --- a/Makefile +++ b/Makefile @@ -36,7 +36,7 @@ dist: clean @echo creating dist tarball @mkdir -p slock-${VERSION} @cp -R LICENSE Makefile README slock.1 config.mk \ - ${SRC} explicit_bzero.c config.def.h arg.h util.h slock-${VERSION} + ${SRC} config.def.h arg.h util.h slock-${VERSION} @tar -cf slock-${VERSION}.tar slock-${VERSION} @gzip slock-${VERSION}.tar @rm -rf slock-${VERSION} 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 */ diff --git a/config.mk b/config.mk index 74429ae..1e1ca45 100644 --- a/config.mk +++ b/config.mk @@ -1,5 +1,5 @@ # slock version -VERSION = 1.4 +VERSION = 1.5 # Customize below to fit your system