Permit the use of the GIT_TRACE_CURL environment variable calling
the curl_trace and curl_dump http.c helper routine.

Helped-by: Torsten Bögershausen <[email protected]>
Helped-by: Ramsay Jones <[email protected]>
Helped-by: Junio C Hamano <[email protected]>
Helped-by: Eric Sunshine <[email protected]>
Helped-by: Jeff King <[email protected]>
Signed-off-by: Elia Pinto <[email protected]>
---
 imap-send.c | 6 ++++++
 1 file changed, 6 insertions(+)

diff --git a/imap-send.c b/imap-send.c
index 938c691..61c6787 100644
--- a/imap-send.c
+++ b/imap-send.c
@@ -1444,6 +1444,12 @@ static CURL *setup_curl(struct imap_server_conf *srvc)
        if (0 < verbosity || getenv("GIT_CURL_VERBOSE"))
                curl_easy_setopt(curl, CURLOPT_VERBOSE, 1L);
 
+       if (curl_trace_want()) {
+               curl_easy_setopt(curl, CURLOPT_VERBOSE, 1L);
+               curl_easy_setopt(curl, CURLOPT_DEBUGFUNCTION, curl_trace);
+               curl_easy_setopt(curl, CURLOPT_DEBUGDATA, NULL);
+       }
+
        return curl;
 }
 
-- 
2.8.1.383.g31b84cc

--
To unsubscribe from this list: send the line "unsubscribe git" in
the body of a message to [email protected]
More majordomo info at  http://vger.kernel.org/majordomo-info.html

Reply via email to