blob: 41133a889086b7f92b74e48965acff6b673cf66f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
/* user and group to drop privileges to */
static const char *user = "nobody";
static const char *group = "nobody";
static const char *colorname[NUMCOLS] = {
[INIT] = "black", /* after initialization */
[INPUT] = "#404040", /* during input */
[FAILED] = "#4d0000", /* wrong password */
};
/* treat a cleared input like a wrong password (color) */
static const int failonclear = 1;
|