This file contains 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
//sudo_1.8.23-9.el7/plugins/sudoers/parse.h | |
/* | |
* Structure describing a Defaults entry in sudoers. | |
*/ | |
struct defaults { | |
TAILQ_ENTRY(defaults) entries; | |
char *var; /* variable name */ | |
char *val; /* variable value */ | |
struct member_list *binding; /* user/host/runas binding */ | |
char *file; /* file Defaults entry was in */ | |
short type; /* DEFAULTS{,_USER,_RUNAS,_HOST} */ | |
char op; /* true, false, '+', '-' */ | |
char error; /* parse error flag */ | |
int lineno; /* line number of Defaults entry */ | |
}; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment