From: Richard Sailer Date: Thu, 22 Feb 2018 00:27:59 +0000 (+0100) Subject: output/lua: remove unnecessary detect.h include X-Git-Tag: suricata-4.1.0-beta1~111 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=7910b6689e80a1b2ad43b611807ecaf32a6d05be;p=thirdparty%2Fsuricata.git output/lua: remove unnecessary detect.h include output-lua.c contained an include of detect.h. Since we don't (and shouldn't) call any functions from detect.c in output-lua.c and such coupling is generally unwanted this patch removes that include. --- diff --git a/src/output-lua.c b/src/output-lua.c index 77d6ec96c0..9ed0068799 100644 --- a/src/output-lua.c +++ b/src/output-lua.c @@ -24,7 +24,6 @@ #include "suricata-common.h" #include "debug.h" -#include "detect.h" #include "pkt-var.h" #include "conf.h"