about summary refs log tree commit diff
path: root/third_party/git/imap-send.c
diff options
context:
space:
mode:
Diffstat (limited to 'third_party/git/imap-send.c')
-rw-r--r--third_party/git/imap-send.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/third_party/git/imap-send.c b/third_party/git/imap-send.c
index 6c54d8c29d..5764dd812c 100644
--- a/third_party/git/imap-send.c
+++ b/third_party/git/imap-send.c
@@ -976,7 +976,7 @@ static struct imap_store *imap_open_store(struct imap_server_conf *srvc, char *f
 
 		imap_info("Starting tunnel '%s'... ", srvc->tunnel);
 
-		argv_array_push(&tunnel.args, srvc->tunnel);
+		strvec_push(&tunnel.args, srvc->tunnel);
 		tunnel.use_shell = 1;
 		tunnel.in = -1;
 		tunnel.out = -1;
@@ -1464,7 +1464,7 @@ static CURL *setup_curl(struct imap_server_conf *srvc, struct credential *cred)
 	curl_easy_setopt(curl, CURLOPT_UPLOAD, 1L);
 
 	if (0 < verbosity || getenv("GIT_CURL_VERBOSE"))
-		curl_easy_setopt(curl, CURLOPT_VERBOSE, 1L);
+		http_trace_curl_no_data();
 	setup_curl_trace(curl);
 
 	return curl;