From 173c5b66a7b8bdfad0d4ae25c138ccf0f3605eda Mon Sep 17 00:00:00 2001 From: rofl0r Date: Fri, 9 Oct 2020 01:04:44 +0100 Subject: [PATCH] conf: remove obsolete whitespace from regex start we already deal with leading whitespace before a command in a manual way before comparing keywords. --- src/conf_regex.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/conf_regex.h b/src/conf_regex.h index 2350aa2..240d664 100644 --- a/src/conf_regex.h +++ b/src/conf_regex.h @@ -24,7 +24,7 @@ ")" #define IPV6MASK "(" IPV6 "(/" DIGIT "+)?)" -#define BEGIN "^" SPACE "*" +#define BEGIN "^" #define END SPACE "*$"