OSDN Git Service

l10n: bg.po: Updated Bulgarian translation (3284t)
[git-core/git.git] / http.c
diff --git a/http.c b/http.c
index 215bebe..32d3326 100644 (file)
--- a/http.c
+++ b/http.c
@@ -866,6 +866,11 @@ static CURL *get_curl_handle(void)
                        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);
                else {