dirmngr: Fix handling of proxy URIs.

* dirmngr/http.c (send_request): We do not support socks4.

Signed-off-by: Justus Winter <justus@g10code.com>
This commit is contained in:
Justus Winter 2017-07-18 17:24:21 +02:00
parent 99791184ac
commit 73d4781e45
No known key found for this signature in database
GPG Key ID: DD1A52F9DA8C9020
1 changed files with 3 additions and 2 deletions

View File

@ -1756,9 +1756,10 @@ send_request (http_t hd, const char *httphost, const char *auth,
if (err)
;
else if (!strcmp (uri->scheme, "http") || !strcmp (uri->scheme, "socks4"))
else if (!strcmp (uri->scheme, "http"))
;
else if (!strcmp (uri->scheme, "socks5h"))
else if (!strcmp (uri->scheme, "socks4")
|| !strcmp (uri->scheme, "socks5h"))
err = gpg_err_make (default_errsource, GPG_ERR_NOT_IMPLEMENTED);
else
err = gpg_err_make (default_errsource, GPG_ERR_INV_URI);