]> git.ipfire.org Git - thirdparty/bird.git/commitdiff
Avoid `default rule can be matched' warning in CLI state.
authorMartin Mares <mj@ucw.cz>
Thu, 2 Dec 1999 12:04:39 +0000 (12:04 +0000)
committerMartin Mares <mj@ucw.cz>
Thu, 2 Dec 1999 12:04:39 +0000 (12:04 +0000)
conf/cf-lex.l

index dadc833ab8aaf873b624093dd1c025564e19a3c8..954ad6b444ac3e3bbaf155dc183291fd4e8eb4c5 100644 (file)
@@ -134,7 +134,7 @@ WHITE [ \t]
   return SYM;
 }
 
-<CLI>! {
+<CLI>(.|\n) {
   BEGIN(INITIAL);
   return CLI_MARKER;
 }