Fixed a typo in RFC-2047 QP conversion: ' ' (SPACE) should be '_' (underscore).
This commit is contained in:
parent
f9ae360def
commit
f22acc6564
@ -153,7 +153,7 @@ const utility::stream::size_type encoderQP::encode(utility::inputStream& in, uti
|
|||||||
// represented as "_" (underscore, ASCII 95.). >>
|
// represented as "_" (underscore, ASCII 95.). >>
|
||||||
if (rfc2047)
|
if (rfc2047)
|
||||||
{
|
{
|
||||||
outBuffer[outBufferPos++] = ' ';
|
outBuffer[outBufferPos++] = '_';
|
||||||
++curCol;
|
++curCol;
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
|
Loading…
Reference in New Issue
Block a user