From f22acc656448e2e90808fcff6e146afc97a810ea Mon Sep 17 00:00:00 2001 From: Vincent Richard Date: Sat, 6 Nov 2004 21:11:00 +0000 Subject: [PATCH] Fixed a typo in RFC-2047 QP conversion: ' ' (SPACE) should be '_' (underscore). --- src/encoderQP.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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