summaryrefslogtreecommitdiffstats
path: root/conf/cf-lex.l
diff options
context:
space:
mode:
authorPavel Machek <pavel@ucw.cz>1999-04-12 21:58:18 +0200
committerPavel Machek <pavel@ucw.cz>1999-04-12 21:58:18 +0200
commit38506f71b0bea5580987e999a7b1a69f58aec7ec (patch)
treef9779191375233fb91582d32eed2489c0e2032ce /conf/cf-lex.l
parent01bd7759b260b379089acf28cc47bd49572ebd22 (diff)
downloadbird-38506f71b0bea5580987e999a7b1a69f58aec7ec.tar
bird-38506f71b0bea5580987e999a7b1a69f58aec7ec.zip
Sets of integers now actually work. Sets of IP will work as soon as
compare function is ready.
Diffstat (limited to 'conf/cf-lex.l')
-rw-r--r--conf/cf-lex.l4
1 files changed, 3 insertions, 1 deletions
diff --git a/conf/cf-lex.l b/conf/cf-lex.l
index a9e7b54..ca7bfae 100644
--- a/conf/cf-lex.l
+++ b/conf/cf-lex.l
@@ -9,6 +9,8 @@
%{
#undef REJECT /* Avoid name clashes */
+#include "filter/filter.h"
+
#include <errno.h>
#include <stdlib.h>
#include <string.h>
@@ -103,7 +105,7 @@ WHITE [ \t]
return SYM;
}
-[={}:;,()+*/%-<>~] {
+[={}:;,()+*/%-<>~\[\]] {
return yytext[0];
}