aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMatthias Andree <matthias.andree@gmx.de>2019-05-11 23:50:42 +0200
committerMatthias Andree <matthias.andree@gmx.de>2019-05-12 09:54:20 +0200
commit41e20033d08f7ee7422fa2d353ac4daf7495f887 (patch)
treec3652efa608c46e682184703928dddabb7f14039
parent3c74c3f3ec64f3a152aef07e0fec2863d72a988f (diff)
downloadfetchmail-41e20033d08f7ee7422fa2d353ac4daf7495f887.tar.gz
fetchmail-41e20033d08f7ee7422fa2d353ac4daf7495f887.tar.bz2
fetchmail-41e20033d08f7ee7422fa2d353ac4daf7495f887.zip
Add line termination when reporting unexpected untagged * BYE contents.
-rw-r--r--imap.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/imap.c b/imap.c
index 9a6a123c..7eb3dc42 100644
--- a/imap.c
+++ b/imap.c
@@ -71,7 +71,7 @@ static int imap_untagged_response(int sock, const char *buf)
/* log the unexpected bye from server as we expect the
* connection to be cut-off after this */
if (outlevel > O_SILENT)
- report(stderr, GT_("Received BYE response from IMAP server: %s"), buf + 5);
+ report(stderr, GT_("Received BYE response from IMAP server: %s\n"), buf + 5);
}
else if (strstr(buf, " EXISTS"))
{