Commit 27f44f60 authored by AllenZMC's avatar AllenZMC Committed by Yong Tang

fix mis-spelling in clouddns.go (#3166)

parent 25632d6a
...@@ -107,7 +107,7 @@ func (h *CloudDNS) ServeDNS(ctx context.Context, w dns.ResponseWriter, r *dns.Ms ...@@ -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) 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 { if !ok || z == nil {
return dns.RcodeServerFailure, nil return dns.RcodeServerFailure, nil
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment