From 69f2466090f4043b8ae67677c939a16e1a30563c Mon Sep 17 00:00:00 2001 From: Adrien Destugues Date: Sat, 16 Jan 2016 18:52:26 +0100 Subject: [PATCH] IMAP: Fix exception message. --- .../mail_daemon/inbound_protocols/imap/imap_lib/Response.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/add-ons/mail_daemon/inbound_protocols/imap/imap_lib/Response.cpp b/src/add-ons/mail_daemon/inbound_protocols/imap/imap_lib/Response.cpp index c8595846a8..76182b8132 100644 --- a/src/add-ons/mail_daemon/inbound_protocols/imap/imap_lib/Response.cpp +++ b/src/add-ons/mail_daemon/inbound_protocols/imap/imap_lib/Response.cpp @@ -706,7 +706,7 @@ Response::Read(BDataIO& stream) } if (bytesRead == 0) - throw ParseException("Unexpected end of string"); + throw ParseException("Unexpected end of stream"); throw StreamException(bytesRead); }