Fixed a typo in RFC-2047 QP conversion: ' ' (SPACE) should be '_' (underscore).

This commit is contained in:
Vincent Richard 2004-11-06 21:11:00 +00:00
parent f9ae360def
commit f22acc6564

View File

@ -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