diff options
| author | Russ Cox <rsc@golang.org> | 2009-05-08 15:40:14 -0700 |
|---|---|---|
| committer | Russ Cox <rsc@golang.org> | 2009-05-08 15:40:14 -0700 |
| commit | 917aa35f8ff95052459538c2e5bae80d1c9a307e (patch) | |
| tree | ac8aca82e0cdf34df99f8ef940c5ccd74117e926 /src/lib/http | |
| parent | cd3ab57a9c2d6088ad1deef97786d5b9f01343f6 (diff) | |
| download | go-917aa35f8ff95052459538c2e5bae80d1c9a307e.tar.xz | |
implications of stricter type equality:
if both types are named, they must be
the same type (arising from the same
declaration).
R=r,gri
DELTA=44 (21 added, 4 deleted, 19 changed)
OCL=28436
CL=28577
Diffstat (limited to 'src/lib/http')
| -rw-r--r-- | src/lib/http/server.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/http/server.go b/src/lib/http/server.go index 438c0d915b..9398351fe7 100644 --- a/src/lib/http/server.go +++ b/src/lib/http/server.go @@ -329,7 +329,7 @@ func Redirect(c *Conn, url string) { // Redirect to a fixed URL type redirectHandler string func (url redirectHandler) ServeHTTP(c *Conn, req *Request) { - Redirect(c, url); + Redirect(c, string(url)); } // RedirectHandler returns a request handler that redirects |
