Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion va/va.go
Original file line number Diff line number Diff line change
Expand Up @@ -842,7 +842,7 @@ func (va VAImpl) getTXTEntry(name string) ([]string, error) {
}

if in.Rcode != dns.RcodeSuccess {
return nil, fmt.Errorf("DNS lookup for %q returned an unsuccessful response: %q", name, in.Rcode)
return nil, fmt.Errorf("DNS lookup for %q returned an unsuccessful response: %d", name, in.Rcode)
}

for _, record := range in.Answer {
Expand Down
Loading