When setting the byte range based on the message size subtract one byte (this gives it the proper byte range in the file...).

This commit is contained in:
mscott%netscape.com 1999-03-08 19:53:10 +00:00
Родитель fcea7370e3
Коммит 242888cf4f
1 изменённых файлов: 1 добавлений и 1 удалений

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

@ -289,7 +289,7 @@ NS_METHOD nsMailboxUrl::SetURLInfo(URL_Struct *URL_s)
if (m_mailboxAction == nsMailboxActionDisplayMessage)
{
// set the byte field range for the url struct...
char * byteRange = PR_smprintf("bytes=%d-%d", m_messageKey, m_messageKey+m_messageSize);
char * byteRange = PR_smprintf("bytes=%d-%d", m_messageKey, m_messageKey+m_messageSize - 1);
m_URL_s->range_header = byteRange;
}