From baadcab1b8b5c11528b78355fa8960e13af743e3 Mon Sep 17 00:00:00 2001 From: Victor Julien Date: Thu, 16 Jul 2015 11:21:44 +0200 Subject: [PATCH] detect: default to u32 for SigIntId --- src/suricata-common.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/suricata-common.h b/src/suricata-common.h index 98545fd803..388f1a429c 100644 --- a/src/suricata-common.h +++ b/src/suricata-common.h @@ -226,8 +226,8 @@ * extensively keeping this as small as possible reduces the overall memory * footprint of the engine. Set to uint32_t if the engine needs to support * more than 64k sigs. */ -#define SigIntId uint16_t -//#define SigIntId uint32_t +//#define SigIntId uint16_t +#define SigIntId uint32_t /** same for pattern id's */ #define PatIntId uint16_t