Fixed
This commit is contained in:
parent
a34d8fb432
commit
31c801b304
5
Makefile
5
Makefile
@ -11,10 +11,7 @@ all: slock
|
||||
.c.o:
|
||||
${CC} -c ${CFLAGS} $<
|
||||
|
||||
${OBJ}: config.h config.mk arg.h util.h
|
||||
|
||||
config.h:
|
||||
cp config.def.h $@
|
||||
${OBJ}: config.def.h config.mk arg.h util.h
|
||||
|
||||
slock: ${OBJ}
|
||||
${CC} -o $@ ${OBJ} ${LDFLAGS}
|
||||
|
@ -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 */
|
||||
@ -9,4 +9,4 @@ static const char *colorname[NUMCOLS] = {
|
||||
};
|
||||
|
||||
/* treat a cleared input like a wrong password (color) */
|
||||
static const int failonclear = 1;
|
||||
static const int failonclear = 0;
|
||||
|
Loading…
Reference in New Issue
Block a user