Hi,
I see in lib/print.c:
static const char *vp_tokens[] = {
"?", /* T_INVALID */
"EOL", /* T_EOL */
"{",
"}",
"(",
")",
",",
";",
"+=",
"-=",
":=",
"=",
"!=",
">=",
">",
"<=",
"<",
"=~",
"!~",
"=*",
"~*",
"==",
"#",
"<BARE-WORD>",
"<\"STRING\">",
"<'STRING'>",
"<`STRING`>"
};
The "~*", shouldn't that be "!*" to be in sync with token.h:
T_OP_CMP_TRUE, /* =* */
T_OP_CMP_FALSE, /* !* */
Cheers and thanks,
Wolfgang
-
List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html

