From 3dcb90f526e63a46375c1e92d2511e0955e055ed Mon Sep 17 00:00:00 2001 From: Darrin Thompson Date: Tue, 12 Jul 2005 21:12:40 -0500 Subject: [PATCH] Support more http features: https no cert, .netrc -> auth Cause setting environment variable GIT_SSL_NO_VERIFY to turn off curl's ssl peer verification. Only use curl for http transfers, instead of curl and wget. Make curl check ~/.netrc for credentials. Signed-off-by: Junio C Hamano Signed-off-by: Linus Torvalds --- http-pull.c | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'http-pull.c') diff --git a/http-pull.c b/http-pull.c index 1f9d60b9b1..b2cecaea39 100644 --- a/http-pull.c +++ b/http-pull.c @@ -16,6 +16,8 @@ static z_stream stream; static int local; static int zret; +static int curl_ssl_verify; + struct buffer { size_t posn; @@ -173,6 +175,10 @@ int main(int argc, char **argv) curl = curl_easy_init(); + curl_ssl_verify = gitenv("GIT_SSL_NO_VERIFY") ? 0 : 1; + curl_easy_setopt(curl, CURLOPT_SSL_VERIFYPEER, curl_ssl_verify); + curl_easy_setopt(curl, CURLOPT_NETRC, CURL_NETRC_OPTIONAL); + base = url; if (pull(commit_id)) -- cgit v1.2.1