From: Brad Fitzpatrick Date: Wed, 27 Mar 2013 06:08:08 +0000 (-0700) Subject: net/textproto: add "Cookie" to the common headers list X-Git-Tag: go1.1rc2~314 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=8eaa94293388848485093c3f0c65b1188dccaaea;p=gostls13.git 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 --- 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",