]> git.ipfire.org Git - thirdparty/suricata.git/commitdiff
detect: spelling: update SigTableApplyStrictCommandLineOption
authorVictor Julien <vjulien@oisf.net>
Sat, 6 May 2023 06:18:51 +0000 (08:18 +0200)
committerVictor Julien <vjulien@oisf.net>
Sat, 6 May 2023 12:50:42 +0000 (14:50 +0200)
src/detect-parse.c
src/detect-parse.h
src/suricata.c

index 2fc44d55bca6e87298e62790675e832196f34d0b..1a68c547c39f4c36a8df31c5fae7450c2c9b30a5 100644 (file)
@@ -335,7 +335,7 @@ bool SigMatchStrictEnabled(const enum DetectKeywordId id)
     return false;
 }
 
-void SigTableApplyStrictCommandlineOption(const char *str)
+void SigTableApplyStrictCommandLineOption(const char *str)
 {
     if (str == NULL) {
         /* nothing to be done */
index 697cd9754e2c232004e4126b394cf2e965ba83c5..4c12f8972eda74b7c7ad03d67225d01822fb50f8 100644 (file)
@@ -76,7 +76,7 @@ bool SigMatchStrictEnabled(const enum DetectKeywordId id);
 const char *DetectListToHumanString(int list);
 const char *DetectListToString(int list);
 
-void SigTableApplyStrictCommandlineOption(const char *str);
+void SigTableApplyStrictCommandLineOption(const char *str);
 
 SigMatch *DetectGetLastSM(const Signature *);
 SigMatch *DetectGetLastSMFromMpmLists(const DetectEngineCtx *de_ctx, const Signature *s);
index 0cad2631ec56a74874e604f2140c5baf08caf9f6..a89840e75102d7d4f092365101feaaf6dab03ed5 100644 (file)
@@ -2731,7 +2731,7 @@ int PostConfLoadedSetup(SCInstance *suri)
 
     /* hardcoded initialization code */
     SigTableSetup(); /* load the rule keywords */
-    SigTableApplyStrictCommandlineOption(suri->strict_rule_parsing_string);
+    SigTableApplyStrictCommandLineOption(suri->strict_rule_parsing_string);
     TmqhSetup();
 
     TagInitCtx();