From a8944b93e707a8f3ba9fde0ba530ee8f4427f950 Mon Sep 17 00:00:00 2001 From: rofl0r Date: Wed, 30 Sep 2020 05:28:00 +0100 Subject: conf: use [0-9] instead of [[:digit:]] for shorter re strings --- src/conf.c | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) (limited to 'src') diff --git a/src/conf.c b/src/conf.c index f2b8c31..6deaa10 100644 --- a/src/conf.c +++ b/src/conf.c @@ -49,21 +49,22 @@ * can (and likely should) be used when building the regex for the * given directive. */ +#define DIGIT "[0-9]" #define WS "[[:space:]]+" #define STR "\"([^\"]+)\"" #define BOOL "(yes|on|no|off)" -#define INT "(()[[:digit:]]+)" +#define INT "(()" DIGIT "+)" #define ALNUM "([-a-z0-9._]+)" #define USERNAME "([^:]*)" #define PASSWORD "([^@]*)" #define IP "((([0-9]{1,3})\\.){3}[0-9]{1,3})" -#define IPMASK "(" IP "(/[[:digit:]]+)?)" +#define IPMASK "(" IP "(/" DIGIT "+)?)" #define IPV6 "(" \ "(([0-9a-f:]{2,39}))|" \ "(([0-9a-f:]{0,29}:" IP "))" \ ")" -#define IPV6MASK "(" IPV6 "(/[[:digit:]]+)?)" +#define IPV6MASK "(" IPV6 "(/" DIGIT "+)?)" #define BEGIN "^[[:space:]]*" #define END "[[:space:]]*$" -- cgit v1.2.3