Commit d1d38c53 authored by Brad Fitzpatrick's avatar Brad Fitzpatrick

net: fix windows build

R=golang-dev, iant
CC=golang-dev
https://golang.org/cl/7392054
parent 752fec22
...@@ -65,7 +65,7 @@ func dialTimeout(net, addr string, timeout time.Duration) (Conn, error) { ...@@ -65,7 +65,7 @@ func dialTimeout(net, addr string, timeout time.Duration) (Conn, error) {
if err != nil { if err != nil {
return nil, err return nil, err
} }
return dial(net, addr, ra, deadline) return dial(net, addr, noLocalAddr, ra, deadline)
} }
// Interface for all IO operations. // Interface for all IO operations.
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment