From: Victor Julien Date: Fri, 5 May 2023 18:46:05 +0000 (+0200) Subject: defrag: spelling X-Git-Tag: suricata-7.0.0-rc2~234 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=ca3c144ec8352de4d1a011b42ab9771a1da27ed5;p=thirdparty%2Fsuricata.git defrag: spelling --- diff --git a/src/defrag-hash.c b/src/defrag-hash.c index 9a3ab4b155..dda2301642 100644 --- a/src/defrag-hash.c +++ b/src/defrag-hash.c @@ -518,7 +518,7 @@ static DefragTracker *DefragTrackerGetNew(Packet *p) } else { /* tracker has been recycled before it went into the spare queue */ - /* tracker is initialized (recylced) but *unlocked* */ + /* tracker is initialized (recycled) but *unlocked* */ } (void) SC_ATOMIC_ADD(defragtracker_counter, 1); diff --git a/src/defrag.c b/src/defrag.c index 69fec69fd1..989b39cb33 100644 --- a/src/defrag.c +++ b/src/defrag.c @@ -23,7 +23,7 @@ * Defragmentation module. * References: * - RFC 815 - * - OpenBSD PF's IP normalizaton (pf_norm.c) + * - OpenBSD PF's IP normalization (pf_norm.c) * * \todo pool for frag packet storage * \todo policy bsd-right @@ -213,7 +213,7 @@ DefragContextNew(void) FatalError("defrag: Timeout less than minimum allowed value."); } else if (timeout > TIMEOUT_MAX) { - FatalError("defrag: Tiemout greater than maximum allowed value."); + FatalError("defrag: Timeout greater than maximum allowed value."); } dc->timeout = timeout; } @@ -2088,7 +2088,7 @@ static int DefragTimeoutTest(void) { int i; - /* Setup a small numberr of trackers. */ + /* Setup a small number of trackers. */ FAIL_IF_NOT(ConfSet("defrag.trackers", "16")); DefragInit();