From 83d2d7bb4bdc7ff1e82df658a7c56c2de7bb7739 Mon Sep 17 00:00:00 2001 From: Victor Julien Date: Thu, 9 Aug 2018 11:21:01 +0200 Subject: [PATCH] detect: minor formatting fixups --- src/detect.h | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/src/detect.h b/src/detect.h index a8048f89e2..b02ca438c9 100644 --- a/src/detect.h +++ b/src/detect.h @@ -238,7 +238,7 @@ typedef struct DetectPort_ { #define SIG_FLAG_TLSSTORE (1<<21) -#define SIG_FLAG_BYPASS (1<<22) +#define SIG_FLAG_BYPASS (1<<22) #define SIG_FLAG_PREFILTER (1<<23) /**< sig is part of a prefilter engine */ @@ -253,12 +253,12 @@ typedef struct DetectPort_ { #define SIG_FLAG_HAS_TARGET (SIG_FLAG_DEST_IS_TARGET|SIG_FLAG_SRC_IS_TARGET) /* signature init flags */ -#define SIG_FLAG_INIT_DEONLY 1 /**< decode event only signature */ -#define SIG_FLAG_INIT_PACKET (1<<1) /**< signature has matches against a packet (as opposed to app layer) */ -#define SIG_FLAG_INIT_FLOW (1<<2) /**< signature has a flow setting */ -#define SIG_FLAG_INIT_BIDIREC (1<<3) /**< signature has bidirectional operator */ -#define SIG_FLAG_INIT_FIRST_IPPROTO_SEEN (1 << 4) /** < signature has seen the first ip_proto keyword */ -#define SIG_FLAG_INIT_HAS_TRANSFORM (1<<5) +#define SIG_FLAG_INIT_DEONLY (1<<0) /**< decode event only signature */ +#define SIG_FLAG_INIT_PACKET (1<<1) /**< signature has matches against a packet (as opposed to app layer) */ +#define SIG_FLAG_INIT_FLOW (1<<2) /**< signature has a flow setting */ +#define SIG_FLAG_INIT_BIDIREC (1<<3) /**< signature has bidirectional operator */ +#define SIG_FLAG_INIT_FIRST_IPPROTO_SEEN (1<<4) /** < signature has seen the first ip_proto keyword */ +#define SIG_FLAG_INIT_HAS_TRANSFORM (1<<5) /* signature mask flags */ #define SIG_MASK_REQUIRE_PAYLOAD (1<<0) -- 2.47.3