From cd28986280eb3cb20ca4b99cacf82aee4e4674b7 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 git-svn-id: svn://10.0.0.236/trunk@22248 18797224-902f-48f8-a5cc-f745e15eee43 --- mozilla/mailnews/compose/tests/smtp/smtpTest.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mozilla/mailnews/compose/tests/smtp/smtpTest.cpp b/mozilla/mailnews/compose/tests/smtp/smtpTest.cpp index bbe09a13a13..788b61fea1d 100644 --- a/mozilla/mailnews/compose/tests/smtp/smtpTest.cpp +++ b/mozilla/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);