diff --git a/dirmngr/http.c b/dirmngr/http.c index 0cb27087c..b5b0e9dbf 100644 --- a/dirmngr/http.c +++ b/dirmngr/http.c @@ -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);