From fe514367534a308d78774836521f01e313b60444 Mon Sep 17 00:00:00 2001 From: "ducarroz%netscape.com" Date: Fri, 26 Feb 1999 23:40:42 +0000 Subject: [PATCH] fix build problem with missing parameter when call SendMailMessage. Add an empty host name --- mailnews/compose/tests/smtp/smtpTest.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mailnews/compose/tests/smtp/smtpTest.cpp b/mailnews/compose/tests/smtp/smtpTest.cpp index bbe09a13a132..788b61fea1d3 100644 --- a/mailnews/compose/tests/smtp/smtpTest.cpp +++ b/mailnews/compose/tests/smtp/smtpTest.cpp @@ -373,7 +373,7 @@ nsresult nsSmtpTestDriver::OnSendMessageInFile() nsFilePath filePath (fileName); nsIURL * url = nsnull; - m_smtpService->SendMailMessage(filePath, m_host, userName, recipients, &url); + m_smtpService->SendMailMessage(filePath, "", userName, recipients, &url); if (url) url->QueryInterface(nsISmtpUrl::IID(), (void **) &m_smtpUrl); NS_IF_RELEASE(url);