summaryrefslogtreecommitdiffstats
path: root/grammar
diff options
context:
space:
mode:
authorRainer Gerhards <rgerhards@adiscon.com>2011-09-28 12:34:01 +0200
committerRainer Gerhards <rgerhards@adiscon.com>2011-09-28 12:34:01 +0200
commit0714cce5bb2c89beeeaece259f11ee4cedce02c4 (patch)
tree7416c0e94b9f1d88615492bd19400e5d649151bf /grammar
parentf2528ec101eb660560c7ec327d440cbb17f04f14 (diff)
downloadrsyslog-0714cce5bb2c89beeeaece259f11ee4cedce02c4.tar.gz
rsyslog-0714cce5bb2c89beeeaece259f11ee4cedce02c4.tar.xz
rsyslog-0714cce5bb2c89beeeaece259f11ee4cedce02c4.zip
bugfix: facility local<x> was not correctly interpreted in legacy filters
Was only accepted if it was the first PRI in a multi-filter PRI. Thanks to forum user Mark for bringing this to our attention.
Diffstat (limited to 'grammar')
-rw-r--r--grammar/lexer.l2
1 files changed, 1 insertions, 1 deletions
diff --git a/grammar/lexer.l b/grammar/lexer.l
index 5c8542dd..a3f8bedd 100644
--- a/grammar/lexer.l
+++ b/grammar/lexer.l
@@ -158,7 +158,7 @@ int fileno(FILE *stream);
"action"[ \n\t]*"(" { BEGIN INOBJ; return BEGIN_ACTION; }
^[ \t]*:\$?[a-z\-]+[ ]*,[ ]*!?[a-z]+[ ]*,[ ]*\".*\" {
yylval.s = strdup(yytext); return PROPFILT; }
-^[ \t]*[\*a-z][,\*a-z]*[0-7]*\.[,!=;\.\*a-z]+ { yylval.s = strdup(yytext); return PRIFILT; }
+^[ \t]*[\*a-z][,\*a-z]*[0-7]*\.[,!=;\.\*a-z0-7]+ { yylval.s = strdup(yytext); return PRIFILT; }
"~" |
"*" |
\-\/[^*][^\n]* |