From: Jeff Lucovsky Date: Wed, 19 Feb 2020 14:15:40 +0000 (-0500) Subject: general: Wordsmith "no rules loaded" message X-Git-Tag: suricata-6.0.0-beta1~714 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=8279bab8dc6bd1da636134d5bf67cf4c0efb843c;p=thirdparty%2Fsuricata.git general: Wordsmith "no rules loaded" message --- diff --git a/src/detect-engine-loader.c b/src/detect-engine-loader.c index 281be7945c..8285e8d0d3 100644 --- a/src/detect-engine-loader.c +++ b/src/detect-engine-loader.c @@ -342,7 +342,7 @@ int SigLoadSignatures(DetectEngineCtx *de_ctx, char *sig_file, int sig_file_excl /* now we should have signatures to work with */ if (sig_stat->good_sigs_total <= 0) { if (sig_stat->total_files > 0) { - SCLogWarning(SC_ERR_NO_RULES_LOADED, "%d rule files specified, but no rule was loaded at all!", sig_stat->total_files); + SCLogWarning(SC_ERR_NO_RULES_LOADED, "%d rule files specified, but no rules were loaded!", sig_stat->total_files); } else { SCLogInfo("No signatures supplied."); goto end;