From 41e20033d08f7ee7422fa2d353ac4daf7495f887 Mon Sep 17 00:00:00 2001 From: Matthias Andree Date: Sat, 11 May 2019 23:50:42 +0200 Subject: Add line termination when reporting unexpected untagged * BYE contents. --- imap.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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")) { -- cgit v1.2.3