at v192 13 lines 492 B view raw
1This patch adds support for the OpenSSL SSL_CERT_FILE environment variable. 2GIT_SSL_CAINFO still takes precedence. 3 4--- git-orig/http.c.orig 2014-11-25 23:27:56.000000000 +0100 5+++ git-orig/http.c 2014-11-25 23:28:48.000000000 +0100 6@@ -433,6 +433,7 @@ 7 #if LIBCURL_VERSION_NUM >= 0x070908 8 set_from_env(&ssl_capath, "GIT_SSL_CAPATH"); 9 #endif 10+ set_from_env(&ssl_cainfo, "SSL_CERT_FILE"); 11 set_from_env(&ssl_cainfo, "GIT_SSL_CAINFO"); 12 13 set_from_env(&user_agent, "GIT_HTTP_USER_AGENT");