From 9b06ae0c8f4517a268ef2f7898835e2f2821fae4 Mon Sep 17 00:00:00 2001 From: "sspitzer%netscape.com" Date: Fri, 4 Jun 1999 22:17:19 +0000 Subject: [PATCH] follow briano's lead and use MOZ_DLL_SUFFIX. also fix warnings while I'm here. git-svn-id: svn://10.0.0.236/trunk@33799 18797224-902f-48f8-a5cc-f745e15eee43 --- mozilla/mailnews/compose/tests/smtp/smtpTest.cpp | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/mozilla/mailnews/compose/tests/smtp/smtpTest.cpp b/mozilla/mailnews/compose/tests/smtp/smtpTest.cpp index 48011faf396..216db1655f2 100644 --- a/mozilla/mailnews/compose/tests/smtp/smtpTest.cpp +++ b/mozilla/mailnews/compose/tests/smtp/smtpTest.cpp @@ -59,11 +59,11 @@ #ifdef XP_MAC #include "nsMacRepository.h" #else -#define NETLIB_DLL "libnetlib.so" -#define XPCOM_DLL "libxpcom.so" -#define PREF_DLL "libpref.so" -#define APPCORES_DLL "libappcores.so" -#define APPSHELL_DLL "libnsappshell.so" +#define NETLIB_DLL "libnetlib"MOZ_DLL_SUFFIX +#define XPCOM_DLL "libxpcom"MOZ_DLL_SUFFIX +#define PREF_DLL "libpref"MOZ_DLL_SUFFIX +#define APPCORES_DLL "libappcores"MOZ_DLL_SUFFIX +#define APPSHELL_DLL "libnsappshell"MOZ_DLL_SUFFIX #endif #endif @@ -189,7 +189,7 @@ nsresult nsSmtpTestDriver::OnStartRunningUrl(nsIURL * aUrl) nsresult nsSmtpTestDriver::OnStopRunningUrl(nsIURL * aUrl, nsresult aExitCode) { NS_PRECONDITION(aUrl, "just a sanity check since this is a test program"); - nsresult rv = NS_OK; + //nsresult rv = NS_OK; m_runningURL = PR_FALSE; if (aUrl) { @@ -384,7 +384,7 @@ nsresult nsSmtpTestDriver::OnSendMessageInFile() nsresult rv = NS_OK; char * fileName = nsnull; char * userName = nsnull; - char * userPassword = nsnull; + //char * userPassword = nsnull; char * displayString = nsnull; char * recipients = nsnull;