diff options
author | Vincent Richard <[email protected]> | 2006-11-08 18:33:18 +0000 |
---|---|---|
committer | Vincent Richard <[email protected]> | 2006-11-08 18:33:18 +0000 |
commit | f99fc84915e4bcd2750b7fadfb24f858ccc7e5ef (patch) | |
tree | b3c8fa78d8b145ff04aca8b17a4a74dbc348cd15 /src/messageId.cpp | |
parent | Fixed compilation problem with GCC 3.3. (diff) | |
download | vmime-f99fc84915e4bcd2750b7fadfb24f858ccc7e5ef.tar.gz vmime-f99fc84915e4bcd2750b7fadfb24f858ccc7e5ef.zip |
Imbue classic 'C' locale for the output of message parts and protocol commands.
Diffstat (limited to 'src/messageId.cpp')
-rw-r--r-- | src/messageId.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/messageId.cpp b/src/messageId.cpp index bfa5cd05..0f808ee9 100644 --- a/src/messageId.cpp +++ b/src/messageId.cpp @@ -210,6 +210,7 @@ messageId& messageId::operator=(const string& id) messageId messageId::generateId() { std::ostringstream left; + left.imbue(std::locale::classic()); left << "vmime"; left << '.'; |