From 02d94f5cf24d903913516739b4b6de0868a5db46 Mon Sep 17 00:00:00 2001 From: Philippe Antoine Date: Fri, 28 Feb 2020 12:04:00 +0100 Subject: [PATCH] detect: fix typo for ipv6.hdr description --- src/detect-ipv6hdr.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/detect-ipv6hdr.c b/src/detect-ipv6hdr.c index 06e6fcfb16..250b6e730f 100644 --- a/src/detect-ipv6hdr.c +++ b/src/detect-ipv6hdr.c @@ -50,7 +50,7 @@ static InspectionBuffer *GetData(DetectEngineThreadCtx *det_ctx, void DetectIpv6hdrRegister(void) { sigmatch_table[DETECT_IPV6HDR].name = "ipv6.hdr"; - sigmatch_table[DETECT_IPV6HDR].desc = "sticky buffer to match on the IPV4 header"; + sigmatch_table[DETECT_IPV6HDR].desc = "sticky buffer to match on the IPV6 header"; sigmatch_table[DETECT_IPV6HDR].url = DOC_URL DOC_VERSION "/rules/header-keywords.html#ipv6hdr"; sigmatch_table[DETECT_IPV6HDR].Setup = DetectIpv6hdrSetup; sigmatch_table[DETECT_IPV6HDR].flags |= SIGMATCH_NOOPT | SIGMATCH_INFO_STICKY_BUFFER;