]> git.ipfire.org Git - thirdparty/suricata.git/commitdiff
misc: fix typos master 13734/head
authorJeff Lucovsky <jlucovsky@oisf.net>
Thu, 31 Jul 2025 14:31:21 +0000 (10:31 -0400)
committerVictor Julien <victor@inliniac.net>
Tue, 19 Aug 2025 11:50:03 +0000 (13:50 +0200)
Fix typos in src/detect-engine.c

Issue: 7819

src/detect-engine.c

index 408e90bc89f8dbbefbdfa7224ce48e98f3a0933e..41566c0ee9b861dc15165da978129060a2f58fb7 100644 (file)
@@ -274,7 +274,7 @@ void DetectAppLayerInspectEngineRegister(const char *name, AppProto alproto, uin
         int progress, InspectEngineFuncPtr Callback, InspectionBufferGetDataPtr GetData)
 {
     /* before adding, check that we don't add a duplicate entry, which will
-     * propegate all the way into the packet runtime if allowed. */
+     * propagate all the way into the packet runtime if allowed. */
     DetectEngineAppInspectionEngine *t = g_app_inspect_engines;
     while (t != NULL) {
         const uint32_t t_direction = t->dir == 0 ? SIG_FLAG_TOSERVER : SIG_FLAG_TOCLIENT;
@@ -296,7 +296,7 @@ void DetectAppLayerInspectEngineRegisterSingle(const char *name, AppProto alprot
         int progress, InspectEngineFuncPtr Callback, InspectionSingleBufferGetDataPtr GetData)
 {
     /* before adding, check that we don't add a duplicate entry, which will
-     * propegate all the way into the packet runtime if allowed. */
+     * propagate all the way into the packet runtime if allowed. */
     DetectEngineAppInspectionEngine *t = g_app_inspect_engines;
     while (t != NULL) {
         const uint32_t t_direction = t->dir == 0 ? SIG_FLAG_TOSERVER : SIG_FLAG_TOCLIENT;