diff options
Diffstat (limited to 'plugin/file/lookup.go')
-rw-r--r-- | plugin/file/lookup.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugin/file/lookup.go b/plugin/file/lookup.go index 28594f300..943b1d52f 100644 --- a/plugin/file/lookup.go +++ b/plugin/file/lookup.go @@ -378,7 +378,7 @@ func cnameForType(targets []dns.RR, origQtype uint16) []dns.RR { } func (z *Zone) externalLookup(state request.Request, target string, qtype uint16) []dns.RR { - m, e := z.Proxy.Lookup(state, target, qtype) + m, e := z.Upstream.Lookup(state, target, qtype) if e != nil { // TODO(miek): debugMsg for this as well? Log? return nil |