Skip to content

Commit 15c64e7

Browse files
Mario KlebschMario Klebsch
authored andcommitted
Don't escape tab in posix regular expressions
1 parent f301254 commit 15c64e7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/conf.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@
6666
#define PASSWORD "([^@]*)"
6767
#define IP "((([0-9]{1,3})\\.){3}[0-9]{1,3})"
6868
#define IPMASK "(" IP "(/" DIGIT "+)?)"
69-
#define IPV6_SCOPE "((%[^ \\t\\/]{1,16})?)"
69+
#define IPV6_SCOPE "((%[^ \t\\/]{1,16})?)"
7070
#define IPV6 "(" \
7171
"([0-9a-f:]{2,39})" IPV6_SCOPE "|" \
7272
"([0-9a-f:]{0,29}:" IP ")" IPV6_SCOPE \

0 commit comments

Comments
 (0)