]> 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>
Tue, 28 Apr 2020 08:14:59 +0000 (10:14 +0200)
(cherry picked from commit 02d94f5cf24d903913516739b4b6de0868a5db46)

src/detect-ipv6hdr.c

index 35b40fe6bfdc5304b1f499b43c134bd56fcc253c..673528f5e10d992c33dcb42a4913170538289fc2 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;