mirror of
https://github.com/ElementsProject/lightning.git
synced 2025-02-21 14:24:09 +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
1 changed files with 2 additions and 0 deletions
|
@ -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…
Add table
Reference in a new issue