From bcf3bfe2fe6828ca787c8559f741f706ed792eb0 Mon Sep 17 00:00:00 2001 From: Ross Light Date: Wed, 4 May 2011 15:01:33 -0400 Subject: [PATCH] http/spdy: add type to FlagClearPreviouslyPersistedSettings constant R=rsc, bradfitz CC=golang-dev https://golang.org/cl/4436074 --- src/pkg/http/spdy/protocol.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/pkg/http/spdy/protocol.go b/src/pkg/http/spdy/protocol.go index 09519d6d30f..d584ea232ea 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.