From a1f68bf41188e6513b0439985ccdebbcdb887c74 Mon Sep 17 00:00:00 2001 From: Victor Julien Date: Fri, 14 Oct 2011 17:17:12 +0200 Subject: [PATCH] Fix detection engine informational message misrepresenting decoder only signatures. --- src/detect.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/detect.c b/src/detect.c index c175ddbf1a..2cc9da71f6 100644 --- a/src/detect.c +++ b/src/detect.c @@ -2445,7 +2445,7 @@ int SigAddressPrepareStage1(DetectEngineCtx *de_ctx) { if (!(de_ctx->flags & DE_QUIET)) { SCLogInfo("%" PRIu32 " signatures processed. %" PRIu32 " are IP-only " "rules, %" PRIu32 " are inspecting packet payload, %"PRIu32 - " inspect application layer, %"PRIu32" are decoder/engine/stream event only", + " inspect application layer, %"PRIu32" are decoder event only", de_ctx->sig_cnt, cnt_iponly, cnt_payload, cnt_applayer, cnt_deonly);