From 30dac60b606744324cd25684619928b831aab04c Mon Sep 17 00:00:00 2001 From: "mscott%netscape.com" Date: Tue, 27 Apr 1999 02:57:25 +0000 Subject: [PATCH] Use MSG_LINEBREAK instead of LINEBREAK. This should fix message display on the Mac. --- mailnews/local/src/nsMailboxProtocol.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/mailnews/local/src/nsMailboxProtocol.cpp b/mailnews/local/src/nsMailboxProtocol.cpp index d8038ed79da..643e1faed36 100644 --- a/mailnews/local/src/nsMailboxProtocol.cpp +++ b/mailnews/local/src/nsMailboxProtocol.cpp @@ -141,7 +141,7 @@ void nsMailboxProtocol::Initialize(nsIURL * aURL) m_mailboxParser = nsnull; - m_lineStreamBuffer = new nsMsgLineStreamBuffer(OUTPUT_BUFFER_SIZE, LINEBREAK, PR_TRUE); + m_lineStreamBuffer = new nsMsgLineStreamBuffer(OUTPUT_BUFFER_SIZE, MSG_LINEBREAK, PR_TRUE); m_nextState = MAILBOX_READ_FOLDER; m_initialState = MAILBOX_READ_FOLDER; @@ -477,7 +477,7 @@ PRInt32 nsMailboxProtocol::ReadMessageResponse(nsIInputStream * inputStream, PRU { if (line) PR_Write(m_tempMessageFile,(void *) line,PL_strlen(line)); - PR_Write(m_tempMessageFile, (void *) LINEBREAK, PL_strlen(CRLF)); + PR_Write(m_tempMessageFile, (void *) MSG_LINEBREAK, PL_strlen(CRLF)); } } }