Don't escape tab in posix regular expressions

This commit is contained in:
Mario Klebsch 2023-05-08 11:36:04 +02:00
parent f301254743
commit 15c64e70f7

View File

@ -66,7 +66,7 @@
#define PASSWORD "([^@]*)"
#define IP "((([0-9]{1,3})\\.){3}[0-9]{1,3})"
#define IPMASK "(" IP "(/" DIGIT "+)?)"
#define IPV6_SCOPE "((%[^ \\t\\/]{1,16})?)"
#define IPV6_SCOPE "((%[^ \t\\/]{1,16})?)"
#define IPV6 "(" \
"([0-9a-f:]{2,39})" IPV6_SCOPE "|" \
"([0-9a-f:]{0,29}:" IP ")" IPV6_SCOPE \