Commit e541c861 authored by Alex Brainman's avatar Alex Brainman

net: fix misspelled variable name (fixes windows build)

R=golang-dev, adg
CC=golang-dev, mikioh.mikioh
https://golang.org/cl/12848047
parent fd58320f
...@@ -44,7 +44,7 @@ func lookupProtocol(name string) (proto int, err error) { ...@@ -44,7 +44,7 @@ func lookupProtocol(name string) (proto int, err error) {
r := <-ch r := <-ch
if r.err != nil { if r.err != nil {
if proto, ok := protocols[name]; ok { if proto, ok := protocols[name]; ok {
return protol, nil return proto, nil
} }
} }
return r.proto, r.err return r.proto, r.err
......
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