From 1174df97129ff344ca5a84bf9484a3c2e0bf68c7 Mon Sep 17 00:00:00 2001 From: Victor Julien Date: Fri, 10 Jun 2011 14:27:04 +0200 Subject: [PATCH] Fix passing a uint8_t as an int. Breaks on some args. --- src/detect.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/detect.h b/src/detect.h index 241aaa961a..fa12f0a112 100644 --- a/src/detect.h +++ b/src/detect.h @@ -553,7 +553,7 @@ typedef struct DetectTagHostCtx_ { /** \brief main detection engine ctx */ typedef struct DetectEngineCtx_ { uint8_t flags; - uint8_t failure_fatal; + int failure_fatal; Signature *sig_list; uint32_t sig_cnt;