error: Add code for threshold config validation

This commit adds a new warning code for threshold config file validation
failures.
pull/6004/head
Jeff Lucovsky 4 years ago committed by Victor Julien
parent a73b5f0ea5
commit cb03455c04

@ -1,4 +1,4 @@
/* Copyright (C) 2007-2020 Open Information Security Foundation /* Copyright (C) 2007-2021 Open Information Security Foundation
* *
* You can copy, redistribute or modify this Program under the terms of * You can copy, redistribute or modify this Program under the terms of
* the GNU General Public License version 2 as published by the Free * the GNU General Public License version 2 as published by the Free
@ -378,6 +378,7 @@ const char * SCErrorToString(SCError err)
CASE_CODE(SC_ERR_LOG_OUTPUT); CASE_CODE(SC_ERR_LOG_OUTPUT);
CASE_CODE(SC_ERR_RULE_INVALID_UTF8); CASE_CODE(SC_ERR_RULE_INVALID_UTF8);
CASE_CODE(SC_ERR_HASHING_DISABLED); CASE_CODE(SC_ERR_HASHING_DISABLED);
CASE_CODE(SC_WARN_THRESH_CONFIG);
CASE_CODE (SC_ERR_MAX); CASE_CODE (SC_ERR_MAX);
} }

@ -1,4 +1,4 @@
/* Copyright (C) 2007-2020 Open Information Security Foundation /* Copyright (C) 2007-2021 Open Information Security Foundation
* *
* You can copy, redistribute or modify this Program under the terms of * You can copy, redistribute or modify this Program under the terms of
* the GNU General Public License version 2 as published by the Free * the GNU General Public License version 2 as published by the Free
@ -368,6 +368,7 @@ typedef enum {
SC_ERR_LOG_OUTPUT, SC_ERR_LOG_OUTPUT,
SC_ERR_RULE_INVALID_UTF8, SC_ERR_RULE_INVALID_UTF8,
SC_ERR_HASHING_DISABLED, SC_ERR_HASHING_DISABLED,
SC_WARN_THRESH_CONFIG,
SC_ERR_MAX SC_ERR_MAX
} SCError; } SCError;

Loading…
Cancel
Save