diff options
| author | David Lamparter <equinox@opensourcerouting.org> | 2017-01-23 21:49:21 +0100 | 
|---|---|---|
| committer | David Lamparter <equinox@opensourcerouting.org> | 2017-01-23 21:49:57 +0100 | 
| commit | 61617d382e018adf7b148bf4d18d6a0fb1fb8645 (patch) | |
| tree | 626eca6f1fce4a70d186f095ff738fada710b19d /lib/command_lex.l | |
| parent | e5fe6d593123657f82786d568a9e8969dda35e59 (diff) | |
lib: parser: free Mr. T
Mr. T was abducted by the parser and held hostage for ransom.
Murdock was called, flew in and replaced him with a Tab character.
Signed-off-by: David Lamparter <equinox@opensourcerouting.org>
Diffstat (limited to 'lib/command_lex.l')
| -rw-r--r-- | lib/command_lex.l | 2 | 
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/command_lex.l b/lib/command_lex.l index d767926263..e245fc4976 100644 --- a/lib/command_lex.l +++ b/lib/command_lex.l @@ -47,7 +47,7 @@ RANGE           \({NUMBER}[ ]?\-[ ]?{NUMBER}\)  %option bison-bridge  %% -[ /t]           /* ignore whitespace */; +[ \t]           /* ignore whitespace */;  {WORD}          {yylval->string = XSTRDUP(MTYPE_TMP, yytext); return WORD;}  {IPV4}          {yylval->string = XSTRDUP(MTYPE_TMP, yytext); return IPV4;}  {IPV4_PREFIX}   {yylval->string = XSTRDUP(MTYPE_TMP, yytext); return IPV4_PREFIX;}  | 
