diff options
-rw-r--r-- | config.def.h | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/config.def.h b/config.def.h index fca0ae0..eae2d9a 100644 --- a/config.def.h +++ b/config.def.h | |||
@@ -1,6 +1,8 @@ | |||
1 | static const char *colorname[NUMCOLS] = { | 1 | static const char *colorname[NUMCOLS] = { |
2 | "black", /* after initialization */ | 2 | "black", /* after initialization */ |
3 | "#005577", /* during input */ | 3 | "#005577", /* during input */ |
4 | "#CC3333", /* failed/cleared the input */ | 4 | "#CC3333", /* wrong password */ |
5 | }; | 5 | }; |
6 | static const Bool failonclear = True; | 6 | |
7 | /* treat a cleared input like a wrong password */ | ||
8 | static const int failonclear = 1; | ||