Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.kernel.org/pub/scm/git/git.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJunio C Hamano <gitster@pobox.com>2016-07-06 23:38:06 +0300
committerJunio C Hamano <gitster@pobox.com>2016-07-06 23:38:06 +0300
commit2f84df2ca0f7a5174d2eb5f4ee52324ce8f807b9 (patch)
tree18fef611dc2a9c8f4113235af95da79c76cbd3cb /imap-send.c
parentcf4c2cfe52be5bd973a4838f73a35d3959ce2f43 (diff)
parent73e57aaf4ded85bb5387365f1ebefaabf80cf073 (diff)
Merge branch 'ep/http-curl-trace'
HTTP transport gained an option to produce more detailed debugging trace. * ep/http-curl-trace: imap-send.c: introduce the GIT_TRACE_CURL enviroment variable http.c: implement the GIT_TRACE_CURL environment variable
Diffstat (limited to 'imap-send.c')
-rw-r--r--imap-send.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/imap-send.c b/imap-send.c
index 938c691585..50377c5b88 100644
--- a/imap-send.c
+++ b/imap-send.c
@@ -1443,6 +1443,7 @@ static CURL *setup_curl(struct imap_server_conf *srvc)
if (0 < verbosity || getenv("GIT_CURL_VERBOSE"))
curl_easy_setopt(curl, CURLOPT_VERBOSE, 1L);
+ setup_curl_trace(curl);
return curl;
}