2016-09-07 11:32:29 +00:00
|
|
|
/* user and group to drop privileges to */
|
|
|
|
static const char *user = "nobody";
|
|
|
|
static const char *group = "nogroup";
|
|
|
|
|
2015-02-11 22:56:35 +00:00
|
|
|
static const char *colorname[NUMCOLS] = {
|
|
|
|
"black", /* after initialization */
|
|
|
|
"#005577", /* during input */
|
2016-02-14 00:32:02 +00:00
|
|
|
"#CC3333", /* wrong password */
|
2015-02-11 22:56:35 +00:00
|
|
|
};
|
2016-02-14 00:32:02 +00:00
|
|
|
|
|
|
|
/* treat a cleared input like a wrong password */
|
|
|
|
static const int failonclear = 1;
|