Use the token name instead of the slot name when formatting the string

name.
This commit is contained in:
javi%netscape.com 2001-03-21 03:46:49 +00:00
Родитель 470ec54019
Коммит 429c09d887
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -92,7 +92,7 @@ char* PK11PasswordPrompt(PK11SlotInfo* slot, PRBool retry, void* arg) {
if (NS_FAILED(rv))
return nsnull;
const PRUnichar* formatStrings[1] = { ToNewUnicode(nsLiteralCString(PK11_GetSlotName(slot))) };
const PRUnichar* formatStrings[1] = { ToNewUnicode(nsLiteralCString(PK11_GetTokenName(slot))) };
rv = nssComponent->PIPBundleFormatStringFromName(NS_LITERAL_STRING("CertPassPrompt").get(),
formatStrings, 1,
getter_Copies(promptString));