mirror of
https://github.com/golang/go
synced 2024-11-23 00:10:07 -07:00
Change the name of the result variable so that it does not
hide the package "ip". R=rsc DELTA=1 (0 added, 0 deleted, 1 changed) OCL=15914 CL=15914
This commit is contained in:
parent
3548350d3e
commit
f023b7a997
@ -81,7 +81,7 @@ func dtoi(s string) (n int, ok bool) {
|
||||
// Convert "host:port" into IP address and port.
|
||||
// For now, host and port must be numeric literals.
|
||||
// Eventually, we'll have name resolution.
|
||||
func HostPortToIP(net string, hostport string) (ip *[]byte, iport int, err *os.Error) {
|
||||
func HostPortToIP(net string, hostport string) (ipaddr *[]byte, iport int, err *os.Error) {
|
||||
var host, port string;
|
||||
host, port, err = SplitHostPort(hostport);
|
||||
if err != nil {
|
||||
|
Loading…
Reference in New Issue
Block a user