1
0
mirror of https://github.com/golang/go synced 2024-11-19 17:44:43 -07:00

net: fix Plan 9 build

R=golang-dev, alex.brainman
CC=golang-dev
https://golang.org/cl/5631051
This commit is contained in:
Anthony Martin 2012-02-05 16:59:32 -08:00
parent 1d2b19e2a3
commit b9917045da

View File

@ -23,7 +23,7 @@ func probeIPv6Stack() (supportsIPv6, supportsIPv4map bool) {
// parsePlan9Addr parses address of the form [ip!]port (e.g. 127.0.0.1!80).
func parsePlan9Addr(s string) (ip IP, iport int, err error) {
addr := IPv4zero // address contains port only
i = byteIndex(s, '!')
i := byteIndex(s, '!')
if i >= 0 {
addr = ParseIP(s[:i])
if addr == nil {