config.l (619:0e065d9d6a5c) config.l (0:68f95e015346)
1%{
2/*
3 * CDDL HEADER START
4 *
5 * The contents of this file are subject to the terms of the
6 * Common Development and Distribution License, Version 1.0 only
7 * (the "License"). You may not use this file except in compliance
8 * with the License.

--- 100 unchanged lines hidden (view full) ---

109[cC][oO][mM][mM][aA][nN][dD] { DEBUG_LEX return COMMAND; }
110[rR][eE][sS][oO][uU][rR][cC][eE] { DEBUG_LEX return RESOURCE; }
111[dD][iI][rR][eE][cC][tT][oO][rR][yY] { DEBUG_LEX return DIRECTORY; }
112
113mib-2 { DEBUG_LEX return MIB2; }
114sun { DEBUG_LEX return SUN; }
115enterprise { DEBUG_LEX return ENTERPRISE; }
116
1%{
2/*
3 * CDDL HEADER START
4 *
5 * The contents of this file are subject to the terms of the
6 * Common Development and Distribution License, Version 1.0 only
7 * (the "License"). You may not use this file except in compliance
8 * with the License.

--- 100 unchanged lines hidden (view full) ---

109[cC][oO][mM][mM][aA][nN][dD] { DEBUG_LEX return COMMAND; }
110[rR][eE][sS][oO][uU][rR][cC][eE] { DEBUG_LEX return RESOURCE; }
111[dD][iI][rR][eE][cC][tT][oO][rR][yY] { DEBUG_LEX return DIRECTORY; }
112
113mib-2 { DEBUG_LEX return MIB2; }
114sun { DEBUG_LEX return SUN; }
115enterprise { DEBUG_LEX return ENTERPRISE; }
116
117([a-zA-Z\*]|[\_\?\-0-9\*+$#%^@!|~&=`<>\\']*[a-zA-Z])[_0-9a-zA-Z-]* { DEBUG_LEX return IDENTIFIER; }
117([a-zA-Z\*]|[\_\.\?\-0-9\*+$#%^@!|~&=`<>\/]*[a-zA-Z])[_0-9a-zA-Z-]* { DEBUG_LEX return IDENTIFIER; }
118
119. { error_exit("syntax error in %s at line %d: the token %s is not valid",
120 config_file_4_res, yylineno, yytext);
121 }
122
123
124%%
125

--- 46 unchanged lines hidden ---
118
119. { error_exit("syntax error in %s at line %d: the token %s is not valid",
120 config_file_4_res, yylineno, yytext);
121 }
122
123
124%%
125

--- 46 unchanged lines hidden ---