From: Martin Mares Date: Thu, 2 Dec 1999 12:04:39 +0000 (+0000) Subject: Avoid `default rule can be matched' warning in CLI state. X-Git-Tag: v1.2.0~1406 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=efe51e38632dd7875af6789536be9ccfefd758c9;p=thirdparty%2Fbird.git Avoid `default rule can be matched' warning in CLI state. --- diff --git a/conf/cf-lex.l b/conf/cf-lex.l index dadc833ab..954ad6b44 100644 --- a/conf/cf-lex.l +++ b/conf/cf-lex.l @@ -134,7 +134,7 @@ WHITE [ \t] return SYM; } -! { +(.|\n) { BEGIN(INITIAL); return CLI_MARKER; }