From 4caa7b6d64f4126ec89021a6ef13ffc62a215d6e Mon Sep 17 00:00:00 2001 From: Frank Denis Date: Sat, 12 Jun 2021 14:48:02 +0200 Subject: [PATCH] Verbose --- dnscrypt-proxy/oblivious_doh.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dnscrypt-proxy/oblivious_doh.go b/dnscrypt-proxy/oblivious_doh.go index 77bf3eea..db3f72fb 100644 --- a/dnscrypt-proxy/oblivious_doh.go +++ b/dnscrypt-proxy/oblivious_doh.go @@ -64,7 +64,7 @@ func parseODoHTargetConfig(config []byte) (ODoHTargetConfig, error) { func parseODoHTargetConfigs(configs []byte) ([]ODoHTargetConfig, error) { if len(configs) <= 2 { - return nil, fmt.Errorf("No configs") + return nil, fmt.Errorf("Server didn't return any ODoH configurations") } length := binary.BigEndian.Uint16(configs) if len(configs) != int(length)+2 {