From b8df086dbe1b2b1cc8702a14ef2bd512b8fcd3c7 Mon Sep 17 00:00:00 2001 From: "dougt%netscape.com" Date: Fri, 27 Apr 2001 22:22:56 +0000 Subject: [PATCH] i collided with string bundle changes. fixing build bustage. r=valeski@netscape.com, a=buildgods --- netwerk/protocol/ftp/src/nsFtpConnectionThread.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/netwerk/protocol/ftp/src/nsFtpConnectionThread.cpp b/netwerk/protocol/ftp/src/nsFtpConnectionThread.cpp index f6ca6de74a3b..c4d009626916 100644 --- a/netwerk/protocol/ftp/src/nsFtpConnectionThread.cpp +++ b/netwerk/protocol/ftp/src/nsFtpConnectionThread.cpp @@ -835,7 +835,7 @@ nsFtpState::S_user() { if (NS_FAILED(rv)) return rv; nsCOMPtr bundle; - rv = bundleService->CreateBundle(NECKO_MSGS_URL, nsnull, getter_AddRefs(bundle)); + rv = bundleService->CreateBundle(NECKO_MSGS_URL, getter_AddRefs(bundle)); nsXPIDLString formatedString; @@ -931,7 +931,7 @@ nsFtpState::S_pass() { if (NS_FAILED(rv)) return rv; nsCOMPtr bundle; - rv = bundleService->CreateBundle(NECKO_MSGS_URL, nsnull, getter_AddRefs(bundle)); + rv = bundleService->CreateBundle(NECKO_MSGS_URL, getter_AddRefs(bundle)); nsXPIDLString formatedString; const PRUnichar *formatStrings[2] = { mUsername.GetUnicode(), hostU.GetUnicode() };