From 15c64e70f795512ec0bfc4074d91d724030c7691 Mon Sep 17 00:00:00 2001 From: Mario Klebsch Date: Mon, 8 May 2023 11:36:04 +0200 Subject: [PATCH] Don't escape tab in posix regular expressions --- src/conf.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/conf.c b/src/conf.c index 2c68548..019a896 100644 --- a/src/conf.c +++ b/src/conf.c @@ -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 \