mirror of
https://github.com/ElementsProject/lightning.git
synced 2024-11-19 01:43:36 +01:00
check-bolt: escape { and }.
These are special in extended regexs, and so we fail to match once we fix the BOLT comment in common/test/run-bigsize.c Signed-off-by: Rusty Russell <rusty@rustcorp.com.au>
This commit is contained in:
parent
1d5bbc874a
commit
ccbc46a476
@ -170,6 +170,8 @@ static char *code_to_regex(const char *code, size_t len, bool escape)
|
||||
case '^':
|
||||
case '[':
|
||||
case ']':
|
||||
case '{':
|
||||
case '}':
|
||||
case '(':
|
||||
case ')':
|
||||
case '+':
|
||||
|
Loading…
Reference in New Issue
Block a user