From 13635dba576172d6c52ab89438eddbf015f23d8b Mon Sep 17 00:00:00 2001 From: Jason Ish Date: Fri, 8 Nov 2019 16:22:24 -0600 Subject: [PATCH] unified2: not supported message if configured --- src/runmodes.c | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/runmodes.c b/src/runmodes.c index 2e767e4397..1eaffec06b 100644 --- a/src/runmodes.c +++ b/src/runmodes.c @@ -760,6 +760,10 @@ void RunModeInitializeOutputs(void) "(see https://redmine.openinfosecfoundation.org/issues/353" " for an explanation)"); continue; + } else if (strncmp(output->val, "unified2-", sizeof("unified2-") - 1) == 0) { + SCLogWarning(SC_ERR_NOT_SUPPORTED, + "Unified2 is no longer supported."); + continue; } else if (strcmp(output->val, "alert-prelude") == 0) { #ifndef PRELUDE SCLogWarning(SC_ERR_NOT_SUPPORTED, -- 2.47.2