aboutsummaryrefslogtreecommitdiff
path: root/src/net/lookup_plan9.go
diff options
context:
space:
mode:
Diffstat (limited to 'src/net/lookup_plan9.go')
-rw-r--r--src/net/lookup_plan9.go10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/net/lookup_plan9.go b/src/net/lookup_plan9.go
index 75c18b33ac..d43a03b778 100644
--- a/src/net/lookup_plan9.go
+++ b/src/net/lookup_plan9.go
@@ -262,8 +262,8 @@ func (*Resolver) lookupSRV(ctx context.Context, service, proto, name string) (cn
if !(portOk && priorityOk && weightOk) {
continue
}
- addrs = append(addrs, &SRV{absDomainName([]byte(f[5])), uint16(port), uint16(priority), uint16(weight)})
- cname = absDomainName([]byte(f[0]))
+ addrs = append(addrs, &SRV{absDomainName(f[5]), uint16(port), uint16(priority), uint16(weight)})
+ cname = absDomainName(f[0])
}
byPriorityWeight(addrs).sort()
return
@@ -280,7 +280,7 @@ func (*Resolver) lookupMX(ctx context.Context, name string) (mx []*MX, err error
continue
}
if pref, _, ok := dtoi(f[2]); ok {
- mx = append(mx, &MX{absDomainName([]byte(f[3])), uint16(pref)})
+ mx = append(mx, &MX{absDomainName(f[3]), uint16(pref)})
}
}
byPref(mx).sort()
@@ -297,7 +297,7 @@ func (*Resolver) lookupNS(ctx context.Context, name string) (ns []*NS, err error
if len(f) < 3 {
continue
}
- ns = append(ns, &NS{absDomainName([]byte(f[2]))})
+ ns = append(ns, &NS{absDomainName(f[2])})
}
return
}
@@ -329,7 +329,7 @@ func (*Resolver) lookupAddr(ctx context.Context, addr string) (name []string, er
if len(f) < 3 {
continue
}
- name = append(name, absDomainName([]byte(f[2])))
+ name = append(name, absDomainName(f[2]))
}
return
}