handler.go:81:7: assignment mismatch: 2 variables but 1 values
Created by: NullOranje
Coredns function signature request.Scrub(reply *dns.Msg)
has changed and now only returns one value.
Issue is resolved by changing handler.go:81:7 to m = state.Scrub(m)
. Will submit a PR.