From 2fd401c8f190f1fe43e51a7f726f6ed6119a1f96 Mon Sep 17 00:00:00 2001 From: Ian Lance Taylor Date: Sat, 3 Dec 2011 02:17:34 +0000 Subject: libgo: Update to weekly.2011-11-02. From-SVN: r181964 --- libgo/go/net/unixsock.go | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) (limited to 'libgo/go/net/unixsock.go') diff --git a/libgo/go/net/unixsock.go b/libgo/go/net/unixsock.go index d5040f9..ae09569 100644 --- a/libgo/go/net/unixsock.go +++ b/libgo/go/net/unixsock.go @@ -6,10 +6,6 @@ package net -import ( - "os" -) - // UnixAddr represents the address of a Unix domain socket end point. type UnixAddr struct { Name string @@ -38,7 +34,7 @@ func (a *UnixAddr) toAddr() Addr { // ResolveUnixAddr parses addr as a Unix domain socket address. // The string net gives the network name, "unix", "unixgram" or // "unixpacket". -func ResolveUnixAddr(net, addr string) (*UnixAddr, os.Error) { +func ResolveUnixAddr(net, addr string) (*UnixAddr, error) { switch net { case "unix": case "unixpacket": -- cgit v1.1