Fix an error message to correctly report the name of the failed init

function.
This commit is contained in:
nelsonb%netscape.com 2000-12-27 02:38:47 +00:00
parent 3dc39fe215
commit ca6ec16975

View File

@ -295,7 +295,7 @@ main(int argc, char **argv)
} else {
rv = NSS_NoDB_Init(secDir);
if (rv != SECSuccess) {
fprintf(stderr, "NSS_Init failed.\n");
fprintf(stderr, "NSS_NoDB_Init failed.\n");
exit(1);
}
}