diff options
author | Matthias Andree <matthias.andree@gmx.de> | 2019-05-11 23:50:42 +0200 |
---|---|---|
committer | Matthias Andree <matthias.andree@gmx.de> | 2019-05-12 09:54:20 +0200 |
commit | 41e20033d08f7ee7422fa2d353ac4daf7495f887 (patch) | |
tree | c3652efa608c46e682184703928dddabb7f14039 | |
parent | 3c74c3f3ec64f3a152aef07e0fec2863d72a988f (diff) | |
download | fetchmail-41e20033d08f7ee7422fa2d353ac4daf7495f887.tar.gz fetchmail-41e20033d08f7ee7422fa2d353ac4daf7495f887.tar.bz2 fetchmail-41e20033d08f7ee7422fa2d353ac4daf7495f887.zip |
Add line termination when reporting unexpected untagged * BYE contents.
-rw-r--r-- | imap.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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")) { |