]> git.ipfire.org Git - thirdparty/suricata.git/commitdiff
detect: fix typo for ipv6.hdr description
authorPhilippe Antoine <contact@catenacyber.fr>
Fri, 28 Feb 2020 11:04:00 +0000 (12:04 +0100)
committerVictor Julien <victor@inliniac.net>
Thu, 5 Mar 2020 15:08:07 +0000 (16:08 +0100)
src/detect-ipv6hdr.c

index 06e6fcfb16ceebbd944f0708fa8473965c1fa5e9..250b6e730f7d69d43cd6d25996c53a81f277dca4 100644 (file)
@@ -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;