Created
March 20, 2017 16:50
-
-
Save syntactician/495358605b8314881d5643bb6b667cab to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* user and group to drop privileges to */ | |
static const char *user = "nobody"; | |
static const char *group = "nogroup"; | |
static const char *colorname[NUMCOLS] = { | |
[INIT] = "#3a3a3a", /* after initialization */ | |
[INPUT] = "#4e4e4e", /* during input */ | |
[FAILED] = "#d68787", /* wrong password */ | |
}; | |
/* treat a cleared input like a wrong password (color) */ | |
static const int failonclear = 1; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment