blob: ba2588843faa225749d77d05dd4fd3c1008586b5 (
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 = "nogroup";
static const char *colorname[NUMCOLS] = {
[INIT] = "#191919", /* after initialization */
[INPUT] = "#282a2e", /* during input */
[FAILED] = "#cc6666", /* wrong password */
};
/* treat a cleared input like a wrong password (color) */
static const int failonclear = 1;
|