aboutsummaryrefslogtreecommitdiffstats
path: root/dirmngr/dns.c
diff options
context:
space:
mode:
authorNIIBE Yutaka <[email protected]>2018-07-02 01:37:49 +0000
committerNIIBE Yutaka <[email protected]>2018-07-02 01:37:49 +0000
commit1aacd12471935a354cfd85ee1805edc7eb16e6c5 (patch)
treeb86ae22abf43fbce5dc3aae8dc1ca2b7f7b623dc /dirmngr/dns.c
parentgpg: Print revocation reason for "rev" records. (diff)
downloadgnupg-1aacd12471935a354cfd85ee1805edc7eb16e6c5.tar.gz
gnupg-1aacd12471935a354cfd85ee1805edc7eb16e6c5.zip
libdns: For SOCKS connection, just fails.
* dirmngr/dns.c (dns_res_exec): If it's DNS_SO_SOCKS_CONN, don't iterate to other server, but return the error immediately. -- In the function libdns_switch_port_p in dns-stuff.c, this patch allows to fallback using TOR_PORT2 correctly. Fixes-commit: bcdbf8b8ebe9d61160e0b007dabe1b6462ffbc93 Signed-off-by: NIIBE Yutaka <[email protected]>
Diffstat (limited to 'dirmngr/dns.c')
-rw-r--r--dirmngr/dns.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/dirmngr/dns.c b/dirmngr/dns.c
index f82ed26cf..77f83f437 100644
--- a/dirmngr/dns.c
+++ b/dirmngr/dns.c
@@ -8846,7 +8846,7 @@ exec:
dgoto(R->sp, DNS_R_FOREACH_A);
error = dns_so_check(&R->so);
- if (error == ECONNREFUSED)
+ if (R->so.state != DNS_SO_SOCKS_CONN && error == ECONNREFUSED)
dgoto(R->sp, DNS_R_FOREACH_A);
else if (error)
goto error;