t/lib-submodule-update.sh: fix test ignoring ignored files in submodules
[gitweb.git] / http.c
diff --git a/http.c b/http.c
index 215bebef1bfb935355a765027fc8605fccbc3d1b..32d33261c98cce2d5fd25c07a503654a3d5d2e52 100644 (file)
--- a/http.c
+++ b/http.c
@@ -865,6 +865,11 @@ static CURL *get_curl_handle(void)
                else if (starts_with(curl_http_proxy, "socks"))
                        curl_easy_setopt(result,
                                CURLOPT_PROXYTYPE, CURLPROXY_SOCKS4);
+#endif
+#if LIBCURL_VERSION_NUM >= 0x073400
+               else if (starts_with(curl_http_proxy, "https"))
+                       curl_easy_setopt(result,
+                               CURLOPT_PROXYTYPE, CURLPROXY_HTTPS);
 #endif
                if (strstr(curl_http_proxy, "://"))
                        credential_from_url(&proxy_auth, curl_http_proxy);