summaryrefslogtreecommitdiff
path: root/imap-send.c
diff options
context:
space:
mode:
authorDongHun Kwak <dh0128.kwak@samsung.com>2021-03-03 15:15:54 +0900
committerDongHun Kwak <dh0128.kwak@samsung.com>2021-03-03 15:15:54 +0900
commit334903ca587355432735a3aee3d4e3d118573335 (patch)
tree5ba77081b1695176b2d0fc66cce3d33631ad714b /imap-send.c
parent7486e7eabccc7fbed0b09923809c882ade6c7b8e (diff)
downloadgit-334903ca587355432735a3aee3d4e3d118573335.tar.gz
git-334903ca587355432735a3aee3d4e3d118573335.tar.bz2
git-334903ca587355432735a3aee3d4e3d118573335.zip
Imported Upstream version 2.10.0upstream/2.10.0
Diffstat (limited to 'imap-send.c')
-rw-r--r--imap-send.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/imap-send.c b/imap-send.c
index 9cbe27fc..0f5f4760 100644
--- a/imap-send.c
+++ b/imap-send.c
@@ -511,7 +511,7 @@ static int nfsnprintf(char *buf, int blen, const char *fmt, ...)
va_start(va, fmt);
if (blen <= 0 || (unsigned)(ret = vsnprintf(buf, blen, fmt, va)) >= (unsigned)blen)
- die("Fatal: buffer too small. Please report a bug.");
+ die("BUG: buffer too small. Please report a bug.");
va_end(va);
return ret;
}
@@ -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;
}