diff options
author | FRIGN <dev@frign.de> | 2016-02-14 01:32:02 +0100 |
---|---|---|
committer | FRIGN <dev@frign.de> | 2016-02-14 01:33:18 +0100 |
commit | bdcbeab0d8ac0963c61ae1d9d1ed57d3effb8ec3 (patch) | |
tree | 535dbf06df16cf197b1ec2a27df4bf60ee7e4f50 | |
parent | 3abbffa4934a62146e995ee7c2cf3ba50991b4ad (diff) |
Clarify config.def.h
Clear up the wording a bit and explain what failonclear means.
-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; | ||