diff options
author | Junio C Hamano <gitster@pobox.com> | 2016-07-06 22:38:06 +0200 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2016-07-06 22:38:06 +0200 |
commit | 2f84df2ca0f7a5174d2eb5f4ee52324ce8f807b9 (patch) | |
tree | 18fef611dc2a9c8f4113235af95da79c76cbd3cb /imap-send.c | |
parent | Second batch of topics for 2.10 (diff) | |
parent | imap-send.c: introduce the GIT_TRACE_CURL enviroment variable (diff) | |
download | git-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.c | 1 |
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; } |