summaryrefslogtreecommitdiff
path: root/imap-send.c
diff options
context:
space:
mode:
authorJunio C Hamano <gitster@pobox.com>2016-07-06 20:38:06 (GMT)
committerJunio C Hamano <gitster@pobox.com>2016-07-06 20:38:06 (GMT)
commit2f84df2ca0f7a5174d2eb5f4ee52324ce8f807b9 (patch)
tree18fef611dc2a9c8f4113235af95da79c76cbd3cb /imap-send.c
parentcf4c2cfe52be5bd973a4838f73a35d3959ce2f43 (diff)
parent73e57aaf4ded85bb5387365f1ebefaabf80cf073 (diff)
downloadgit-2f84df2ca0f7a5174d2eb5f4ee52324ce8f807b9.zip
git-2f84df2ca0f7a5174d2eb5f4ee52324ce8f807b9.tar.gz
git-2f84df2ca0f7a5174d2eb5f4ee52324ce8f807b9.tar.bz2
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 938c691..50377c5 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;
}