From: Philippe Antoine Date: Fri, 28 Feb 2020 11:04:00 +0000 (+0100) Subject: detect: fix typo for ipv6.hdr description X-Git-Tag: suricata-6.0.0-beta1~674 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=02d94f5cf24d903913516739b4b6de0868a5db46;p=thirdparty%2Fsuricata.git detect: fix typo for ipv6.hdr description --- 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;