diff options
author | Vincent Richard <[email protected]> | 2018-08-17 19:22:11 +0000 |
---|---|---|
committer | Vincent Richard <[email protected]> | 2018-08-17 19:22:11 +0000 |
commit | 1e56a3617d43cb809be23287fd25d423a18e5917 (patch) | |
tree | f5b98fd04fa96980d2f40893058a6419334edd18 | |
parent | Fixed warnings with GCC 7. (diff) | |
download | vmime-1e56a3617d43cb809be23287fd25d423a18e5917.tar.gz vmime-1e56a3617d43cb809be23287fd25d423a18e5917.zip |
Force classic locale when formatting IMAP UIDs.
-rw-r--r-- | src/vmime/net/imap/IMAPUtils.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/vmime/net/imap/IMAPUtils.cpp b/src/vmime/net/imap/IMAPUtils.cpp index 6124edcf..3e6b2677 100644 --- a/src/vmime/net/imap/IMAPUtils.cpp +++ b/src/vmime/net/imap/IMAPUtils.cpp @@ -694,6 +694,7 @@ public: IMAPUIDMessageSetEnumerator() : m_first(true) { + m_oss.imbue(std::locale::classic()); } void enumerateNumberMessageRange(const vmime::net::numberMessageRange& range) |