diff options
author | Vincent Richard <[email protected]> | 2005-05-03 16:13:34 +0000 |
---|---|---|
committer | Vincent Richard <[email protected]> | 2005-05-03 16:13:34 +0000 |
commit | 13da0727c5717d257e1102a3ffb06a18d24e3d9d (patch) | |
tree | 48f6ad4b8348de90bf6f79575f3bee5a564bc1d7 /src/messaging/imap/IMAPFolder.cpp | |
parent | Added 'childProcess'. (diff) | |
download | vmime-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.cpp | 2 |
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); |