]> git.ipfire.org Git - thirdparty/suricata.git/commitdiff
general: Wordsmith "no rules loaded" message
authorJeff Lucovsky <jeff@lucovsky.org>
Wed, 19 Feb 2020 14:15:40 +0000 (09:15 -0500)
committerVictor Julien <victor@inliniac.net>
Mon, 24 Feb 2020 10:27:59 +0000 (11:27 +0100)
src/detect-engine-loader.c

index 281be7945c73dcd7e0f27c902234f93eed51b341..8285e8d0d377fdfae76d990b8b0c7951b720f2b9 100644 (file)
@@ -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;