Fix Bug #6216 --> when sending messages with blank lines, we were eating up the line returns.

This commit is contained in:
mscott%netscape.com 1999-05-17 21:23:11 +00:00
Родитель ebc727289f
Коммит 9ca8e54880
1 изменённых файлов: 4 добавлений и 1 удалений

Просмотреть файл

@ -1159,7 +1159,10 @@ PRInt32 nsSmtpProtocol::SendMessageInFile()
}
else
{
lastLineWasComplete = PR_FALSE;
line[L++] = CR;
line[L++] = LF;
line[L] = 0;
lastLineWasComplete = PR_FALSE;
}
bsize -= L;