From 489af24132c9122c6301664e4125907d655d42f8 Mon Sep 17 00:00:00 2001 From: jason taylor Date: Wed, 21 Sep 2022 20:46:59 +0000 Subject: [PATCH] detect: update ttl debug log messages Signed-off-by: jason taylor --- src/detect-ttl.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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; }