diff options
author | 2019-08-21 21:16:00 +0800 | |
---|---|---|
committer | 2019-08-21 06:16:00 -0700 | |
commit | 27f44f60eed0797d19be6d99ccaae067bc41c337 (patch) | |
tree | 5cf8a78a37b6b78dbe449a59f50ad14a26e3f1b5 /plugin | |
parent | 25632d6a23c7d3449537a3cf8d507c61173b1972 (diff) | |
download | coredns-27f44f60eed0797d19be6d99ccaae067bc41c337.tar.gz coredns-27f44f60eed0797d19be6d99ccaae067bc41c337.tar.zst coredns-27f44f60eed0797d19be6d99ccaae067bc41c337.zip |
fix mis-spelling in clouddns.go (#3166)
Diffstat (limited to 'plugin')
-rw-r--r-- | plugin/clouddns/clouddns.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugin/clouddns/clouddns.go b/plugin/clouddns/clouddns.go index ab04e5f75..3546a4fea 100644 --- a/plugin/clouddns/clouddns.go +++ b/plugin/clouddns/clouddns.go @@ -107,7 +107,7 @@ func (h *CloudDNS) ServeDNS(ctx context.Context, w dns.ResponseWriter, r *dns.Ms return plugin.NextOrFailure(h.Name(), h.Next, ctx, w, r) } - z, ok := h.zones[zName] // ok true if we are authoritive for the zone + z, ok := h.zones[zName] // ok true if we are authoritative for the zone if !ok || z == nil { return dns.RcodeServerFailure, nil } |