diff options
author | Junio C Hamano <gitster@pobox.com> | 2016-07-06 13:38:06 -0700 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2016-07-06 13:38:06 -0700 |
commit | 2f84df2ca0f7a5174d2eb5f4ee52324ce8f807b9 (patch) | |
tree | 18fef611dc2a9c8f4113235af95da79c76cbd3cb /imap-send.c | |
parent | cf4c2cfe52be5bd973a4838f73a35d3959ce2f43 (diff) | |
parent | 73e57aaf4ded85bb5387365f1ebefaabf80cf073 (diff) | |
download | git-2f84df2ca0f7a5174d2eb5f4ee52324ce8f807b9.tar.gz |
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; } |