From dcf2f6b2bee857d8120dc82b0261832a4bfb08e5 Mon Sep 17 00:00:00 2001 From: Victor Julien Date: Thu, 1 Dec 2022 12:49:13 +0100 Subject: [PATCH] detect: more compact message on error --- src/suricata.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/suricata.c b/src/suricata.c index 400924cbd7..7de612e049 100644 --- a/src/suricata.c +++ b/src/suricata.c @@ -2514,8 +2514,7 @@ void PostConfLoadedDetectSetup(SCInstance *suri) de_ctx = DetectEngineCtxInit(); } if (de_ctx == NULL) { - FatalError("initializing detection engine " - "context failed."); + FatalError("initializing detection engine failed."); } if (de_ctx->type == DETECT_ENGINE_TYPE_NORMAL) {