summaryrefslogtreecommitdiffstats
path: root/imap-send.c
diff options
context:
space:
mode:
authorJunio C Hamano <gitster@pobox.com>2016-07-06 22:38:06 +0200
committerJunio C Hamano <gitster@pobox.com>2016-07-06 22:38:06 +0200
commit2f84df2ca0f7a5174d2eb5f4ee52324ce8f807b9 (patch)
tree18fef611dc2a9c8f4113235af95da79c76cbd3cb /imap-send.c
parentSecond batch of topics for 2.10 (diff)
parentimap-send.c: introduce the GIT_TRACE_CURL enviroment variable (diff)
downloadgit-2f84df2ca0f7a5174d2eb5f4ee52324ce8f807b9.tar.xz
git-2f84df2ca0f7a5174d2eb5f4ee52324ce8f807b9.zip
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;
}