From 49fee431b9f1e95ddca79f9874941dac1b52ab63 Mon Sep 17 00:00:00 2001 From: Fabian Keil Date: Thu, 4 Mar 2021 14:07:47 +0100 Subject: [PATCH] create_pattern_spec(): Fix ifdef indentation --- urlmatch.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/urlmatch.c b/urlmatch.c index 4670f310..fa0e15d0 100644 --- a/urlmatch.c +++ b/urlmatch.c @@ -1206,9 +1206,9 @@ jb_err create_pattern_spec(struct pattern_spec *pattern, char *buf) const unsigned flag; } tag_pattern[] = { { "TAG:", 4, PATTERN_SPEC_TAG_PATTERN}, - #ifdef FEATURE_CLIENT_TAGS +#ifdef FEATURE_CLIENT_TAGS { "CLIENT-TAG:", 11, PATTERN_SPEC_CLIENT_TAG_PATTERN}, - #endif +#endif { "NO-REQUEST-TAG:", 15, PATTERN_SPEC_NO_REQUEST_TAG_PATTERN}, { "NO-RESPONSE-TAG:", 16, PATTERN_SPEC_NO_RESPONSE_TAG_PATTERN} }; -- 2.39.2