aboutsummaryrefslogtreecommitdiffstats
path: root/src/messaging/imap/IMAPFolder.cpp
diff options
context:
space:
mode:
authorVincent Richard <[email protected]>2005-05-03 16:13:34 +0000
committerVincent Richard <[email protected]>2005-05-03 16:13:34 +0000
commit13da0727c5717d257e1102a3ffb06a18d24e3d9d (patch)
tree48f6ad4b8348de90bf6f79575f3bee5a564bc1d7 /src/messaging/imap/IMAPFolder.cpp
parentAdded 'childProcess'. (diff)
downloadvmime-13da0727c5717d257e1102a3ffb06a18d24e3d9d.tar.gz
vmime-13da0727c5717d257e1102a3ffb06a18d24e3d9d.zip
Fixed missing space in STATUS command + parse error in 'status_info'.
Diffstat (limited to 'src/messaging/imap/IMAPFolder.cpp')
-rw-r--r--src/messaging/imap/IMAPFolder.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/messaging/imap/IMAPFolder.cpp b/src/messaging/imap/IMAPFolder.cpp
index 39404c82..91bf0177 100644
--- a/src/messaging/imap/IMAPFolder.cpp
+++ b/src/messaging/imap/IMAPFolder.cpp
@@ -1461,7 +1461,7 @@ void IMAPFolder::status(int& count, int& unseen)
command << "STATUS ";
command << IMAPUtils::quoteString(IMAPUtils::pathToString
(m_connection->hierarchySeparator(), getFullPath()));
- command << "(MESSAGES UNSEEN)";
+ command << " (MESSAGES UNSEEN)";
// Send the request
m_store->m_connection->send(true, command.str(), true);