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() };