From: jason taylor Date: Wed, 21 Sep 2022 20:46:59 +0000 (+0000) Subject: detect: update ttl debug log messages X-Git-Tag: suricata-7.0.0-beta1~174 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=489af24132c9122c6301664e4125907d655d42f8;p=thirdparty%2Fsuricata.git detect: update ttl debug log messages Signed-off-by: jason taylor --- diff --git a/src/detect-ttl.c b/src/detect-ttl.c index 20d1563bfe..02309b4f04 100644 --- a/src/detect-ttl.c +++ b/src/detect-ttl.c @@ -92,7 +92,7 @@ static int DetectTtlMatch (DetectEngineThreadCtx *det_ctx, Packet *p, } else if (PKT_IS_IPV6(p)) { pttl = IPV6_GET_HLIM(p); } else { - SCLogDebug("Packet is of not IPv4 or IPv6"); + SCLogDebug("Packet is not IPv4 or IPv6"); return 0; } @@ -155,7 +155,7 @@ PrefilterPacketTtlMatch(DetectEngineThreadCtx *det_ctx, Packet *p, const void *p } else if (PKT_IS_IPV6(p)) { pttl = IPV6_GET_HLIM(p); } else { - SCLogDebug("Packet is of not IPv4 or IPv6"); + SCLogDebug("Packet is not IPv4 or IPv6"); return; }