Files
sudo/sudo.tab.h
Todd C. Miller ffca544b6c Fully qualified hosts w/ wildcards were not matching the FQHOST token type.
There's really no need for a separate token for fully-qualified vs.
unqualified anymore so FQHOST is now history and hostname_matches
now decides which hostname (short or long) to check based on whether
or not the pattern contains a '.'.
2000-03-23 04:38:22 +00:00

27 lines
524 B
C

#define COMMAND 257
#define ALIAS 258
#define NTWKADDR 259
#define NETGROUP 260
#define USERGROUP 261
#define WORD 262
#define DEFAULTS 263
#define DEFAULTS_HOST 264
#define DEFAULTS_USER 265
#define RUNAS 266
#define NOPASSWD 267
#define PASSWD 268
#define ALL 269
#define COMMENT 270
#define HOSTALIAS 271
#define CMNDALIAS 272
#define USERALIAS 273
#define RUNASALIAS 274
#define ERROR 275
typedef union {
char *string;
int BOOLEAN;
struct sudo_command command;
int tok;
} YYSTYPE;
extern YYSTYPE yylval;