From: Eric Leblond Date: Fri, 16 Jan 2015 13:37:41 +0000 (+0100) Subject: list keywords: fix regression on app layer name X-Git-Tag: suricata-2.1beta4~56 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=6f5c4c12e1a6e16fbe7d9eece6e8f1504647e952;p=thirdparty%2Fsuricata.git list keywords: fix regression on app layer name It was not anymore displayed. --- diff --git a/src/util-running-modes.c b/src/util-running-modes.c index 8f30044dc7..07aeffef5f 100644 --- a/src/util-running-modes.c +++ b/src/util-running-modes.c @@ -24,11 +24,14 @@ #include "config.h" #include "app-layer-detect-proto.h" #include "app-layer.h" +#include "app-layer-parser.h" #include "util-cuda.h" #include "util-unittest.h" int ListKeywords(const char *keyword_info) { + MpmTableSetup(); + AppLayerSetup(); SigTableSetup(); /* load the rule keywords */ SigTableList(keyword_info); exit(EXIT_SUCCESS);