summaryrefslogtreecommitdiff
path: root/dns.go
diff options
context:
space:
mode:
Diffstat (limited to 'dns.go')
-rw-r--r--dns.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/dns.go b/dns.go
index a2e4763..ac4f35d 100644
--- a/dns.go
+++ b/dns.go
@@ -111,10 +111,10 @@ func lookupNS(domain string) {
}
tmp = shell.Chomp(tmp)
- if (tmp != me.NSrr.S) {
+ if (tmp != me.status.NSrr.Get()) {
me.changed = true
log.Log(CHANGE, "lookupNS() setting me.NSrr =", tmp)
- me.NSrr.SetText(tmp)
+ me.status.NSrr.Set(tmp)
}
}