From ff5f50c52c421d75940ef9392211e3ab24d71332 Mon Sep 17 00:00:00 2001 From: Ian Lance Taylor <iant@google.com> Date: Fri, 21 Jan 2011 18:19:03 +0000 Subject: Remove the types float and complex. Update to current version of Go library. Update testsuite for removed types. * go-lang.c (go_langhook_init): Omit float_type_size when calling go_create_gogo. * go-c.h: Update declaration of go_create_gogo. From-SVN: r169098 --- libgo/go/websocket/client.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'libgo/go/websocket/client.go') diff --git a/libgo/go/websocket/client.go b/libgo/go/websocket/client.go index caf63f16f65..09134594405 100644 --- a/libgo/go/websocket/client.go +++ b/libgo/go/websocket/client.go @@ -111,7 +111,7 @@ func Dial(url, protocol, origin string) (ws *Conn, err os.Error) { client, err = net.Dial("tcp", "", parsedUrl.Host) case "wss": - client, err = tls.Dial("tcp", "", parsedUrl.Host) + client, err = tls.Dial("tcp", "", parsedUrl.Host, nil) default: err = ErrBadScheme -- cgit v1.2.1