From: Ross Light Date: Wed, 4 May 2011 19:01:33 +0000 (-0400) Subject: http/spdy: add type to FlagClearPreviouslyPersistedSettings constant X-Git-Tag: weekly.2011-05-22~145 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=bcf3bfe2fe6828ca787c8559f741f706ed792eb0;p=gostls13.git http/spdy: add type to FlagClearPreviouslyPersistedSettings constant R=rsc, bradfitz CC=golang-dev https://golang.org/cl/4436074 --- diff --git a/src/pkg/http/spdy/protocol.go b/src/pkg/http/spdy/protocol.go index 09519d6d30..d584ea232e 100644 --- a/src/pkg/http/spdy/protocol.go +++ b/src/pkg/http/spdy/protocol.go @@ -73,7 +73,7 @@ const ( // SETTINGS frame flags const ( - FlagClearPreviouslyPersistedSettings = 0x01 + FlagClearPreviouslyPersistedSettings FrameFlags = 0x01 ) // MaxDataLength is the maximum number of bytes that can be stored in one frame.