From b6408e1e49062f7b69575e9af94728bbb55572a7 Mon Sep 17 00:00:00 2001 From: Matteo Pace Date: Fri, 1 Dec 2023 11:19:35 +0100 Subject: [PATCH] fix comment --- internal/corazawaf/transaction.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal/corazawaf/transaction.go b/internal/corazawaf/transaction.go index 4b584c0a8..da65096f3 100644 --- a/internal/corazawaf/transaction.go +++ b/internal/corazawaf/transaction.go @@ -321,7 +321,7 @@ func (tx *Transaction) AddRequestHeader(key string, value string) { } case "cookie": // Cookies use the same syntax as GET params but with semicolon (;) separator - // noUrlUnescape is used to avoid implicitly performing an URL decode on the cookies + // WithoutUnescape is used to avoid implicitly performing an URL decode on the cookies values := urlutil.ParseQueryWithoutUnescape(value, ';') for k, vr := range values { for _, v := range vr {