From 8eaa94293388848485093c3f0c65b1188dccaaea Mon Sep 17 00:00:00 2001 From: Brad Fitzpatrick Date: Tue, 26 Mar 2013 23:08:08 -0700 Subject: [PATCH] net/textproto: add "Cookie" to the common headers list Seems to have been omitted before. R=golang-dev, dave CC=golang-dev https://golang.org/cl/7749049 --- src/pkg/net/textproto/reader.go | 1 + 1 file changed, 1 insertion(+) diff --git a/src/pkg/net/textproto/reader.go b/src/pkg/net/textproto/reader.go index 35e27acb5a..5bd26ac8d6 100644 --- a/src/pkg/net/textproto/reader.go +++ b/src/pkg/net/textproto/reader.go @@ -574,6 +574,7 @@ var commonHeaders = []string{ "Content-Length", "Content-Transfer-Encoding", "Content-Type", + "Cookie", "Date", "Dkim-Signature", "Etag", -- 2.48.1