diff options
author | Maria Matejka <mq@ucw.cz> | 2022-02-04 15:24:28 +0100 |
---|---|---|
committer | Maria Matejka <mq@ucw.cz> | 2022-02-04 15:24:28 +0100 |
commit | 14bb6fd29a1c88103e73138d5fd4396e610aa469 (patch) | |
tree | 161faf567ceb696f36f326340653330bb1e1443b /conf/cf-lex.l | |
parent | 92e48894c379862003efe0a752411751e298b54e (diff) | |
parent | bcb25084d31fdb90fcf1666f10e73fe0f863afc0 (diff) |
Merge commit 'bcb25084d31fdb90fcf1666f10e73fe0f863afc0' into sark-bgp-rebased
Diffstat (limited to 'conf/cf-lex.l')
-rw-r--r-- | conf/cf-lex.l | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/conf/cf-lex.l b/conf/cf-lex.l index 704a1750..c9d2f5a5 100644 --- a/conf/cf-lex.l +++ b/conf/cf-lex.l @@ -255,7 +255,7 @@ WHITE [ \t] return IP4; } -{XIGIT}{2}(:{XIGIT}{2}|{XIGIT}{2}){15,} { +{XIGIT}{2}((:{XIGIT}{2}){15,}|({XIGIT}{2}){15,}) { char *s = yytext; size_t len = 0, i; struct bytestring *bytes; |