aboutsummaryrefslogtreecommitdiffstats
path: root/src/encoderQP.cpp
diff options
context:
space:
mode:
authorVincent Richard <[email protected]>2004-11-06 21:11:00 +0000
committerVincent Richard <[email protected]>2004-11-06 21:11:00 +0000
commitf22acc656448e2e90808fcff6e146afc97a810ea (patch)
tree17382094f291b16c5c621840436d408f4089ba84 /src/encoderQP.cpp
parentRemoved "old-style" tests for encoder and mailbox. Added new test for encoder. (diff)
downloadvmime-f22acc656448e2e90808fcff6e146afc97a810ea.tar.gz
vmime-f22acc656448e2e90808fcff6e146afc97a810ea.zip
Fixed a typo in RFC-2047 QP conversion: ' ' (SPACE) should be '_' (underscore).
Diffstat (limited to 'src/encoderQP.cpp')
-rw-r--r--src/encoderQP.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/encoderQP.cpp b/src/encoderQP.cpp
index 637d0b9e..5b019319 100644
--- a/src/encoderQP.cpp
+++ b/src/encoderQP.cpp
@@ -153,7 +153,7 @@ const utility::stream::size_type encoderQP::encode(utility::inputStream& in, uti
// represented as "_" (underscore, ASCII 95.). >>
if (rfc2047)
{
- outBuffer[outBufferPos++] = ' ';
+ outBuffer[outBufferPos++] = '_';
++curCol;
}
else