summaryrefslogtreecommitdiff
path: root/dns/client.go
diff options
context:
space:
mode:
Diffstat (limited to 'dns/client.go')
-rw-r--r--dns/client.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/dns/client.go b/dns/client.go
index f322b45..525444a 100644
--- a/dns/client.go
+++ b/dns/client.go
@@ -46,7 +46,7 @@ func (c *DNSClient) AXFR(zone *bind.Zone) (chan *dns.Envelope, error) {
46 m.SetAxfr(zone.Name) 46 m.SetAxfr(zone.Name)
47 k.Sign(m) 47 k.Sign(m)
48 48
49 return t.In(m, fmt.Sprintf("%s:53", c.Server)) 49 return t.In(m, c.Server)
50} 50}
51 51
52func (c *DNSClient) ReadRemoteZone(zone *bind.Zone) ([]RR, error) { 52func (c *DNSClient) ReadRemoteZone(zone *bind.Zone) ([]RR, error) {