diff options
author | NIIBE Yutaka <[email protected]> | 2018-07-02 01:37:49 +0000 |
---|---|---|
committer | NIIBE Yutaka <[email protected]> | 2018-07-02 01:37:49 +0000 |
commit | 1aacd12471935a354cfd85ee1805edc7eb16e6c5 (patch) | |
tree | b86ae22abf43fbce5dc3aae8dc1ca2b7f7b623dc /dirmngr/dns.c | |
parent | gpg: Print revocation reason for "rev" records. (diff) | |
download | gnupg-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.c | 2 |
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; |