diff options
| author | Vincent Richard <[email protected]> | 2013-08-16 09:43:54 +0000 |
|---|---|---|
| committer | Vincent Richard <[email protected]> | 2013-08-16 09:43:54 +0000 |
| commit | 2f513ff53232c384a705c292c596abbc77f83366 (patch) | |
| tree | 908deeb07f5fc7c9461ac7608cb09748a55c3401 /src/net/imap/IMAPFolder.cpp | |
| parent | Added test for SMTP connection error. (diff) | |
| download | vmime-2f513ff53232c384a705c292c596abbc77f83366.tar.gz vmime-2f513ff53232c384a705c292c596abbc77f83366.zip | |
Fixed missing space in command.
Diffstat (limited to 'src/net/imap/IMAPFolder.cpp')
| -rw-r--r-- | src/net/imap/IMAPFolder.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/net/imap/IMAPFolder.cpp b/src/net/imap/IMAPFolder.cpp index 4214238a..94d7ab13 100644 --- a/src/net/imap/IMAPFolder.cpp +++ b/src/net/imap/IMAPFolder.cpp @@ -924,9 +924,9 @@ void IMAPFolder::deleteMessages(const messageSet& msgs) command.imbue(std::locale::classic()); if (msgs.isUIDSet()) - command << "UID STORE" << IMAPUtils::messageSetToSequenceSet(msgs); + command << "UID STORE " << IMAPUtils::messageSetToSequenceSet(msgs); else - command << "STORE" << IMAPUtils::messageSetToSequenceSet(msgs); + command << "STORE " << IMAPUtils::messageSetToSequenceSet(msgs); command << " +FLAGS (\\Deleted)"; |
