Fix build bustage.

git-svn-id: svn://10.0.0.236/trunk@91899 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
javi%netscape.com 2001-04-10 20:57:57 +00:00
parent a69ae58205
commit 98b09ba42b

View File

@ -99,10 +99,8 @@ char* PK11PasswordPrompt(PK11SlotInfo* slot, PRBool retry, void* arg) {
if (NS_FAILED(rv))
return nsnull;
rv = proxyPrompt->PromptPassword(nsnull, promptString,
NS_LITERAL_STRING(" ").get(),
nsIPrompt::SAVE_PASSWORD_NEVER,
&password, &value);
rv = proxyPrompt->PromptPassword(nsnull, promptString.get(),
&password, nsnull, nsnull, &value);
if (NS_SUCCEEDED(rv) && value) {
char* str = nsString(password).ToNewCString();
Recycle(password);