summaryrefslogtreecommitdiff
path: root/security/nss/cmd/lib
diff options
context:
space:
mode:
authornelsonb%netscape.com <devnull@localhost>2002-10-17 02:06:31 +0000
committernelsonb%netscape.com <devnull@localhost>2002-10-17 02:06:31 +0000
commit62529ffe6957f35a5dd2830a1aff14f5b2b50c0f (patch)
tree2889d9b85b02d4ffd8005e2cb9346625e40cbc62 /security/nss/cmd/lib
parent8c3ffa8babee33cd1c49c248f458b489535248cc (diff)
downloadnss-hg-62529ffe6957f35a5dd2830a1aff14f5b2b50c0f.tar.gz
Change instructions for entering a new token password to say "should"
instead of "must". Bug 174135.
Diffstat (limited to 'security/nss/cmd/lib')
-rw-r--r--security/nss/cmd/lib/secutil.c10
1 files changed, 4 insertions, 6 deletions
diff --git a/security/nss/cmd/lib/secutil.c b/security/nss/cmd/lib/secutil.c
index 0abac426f..8ed3c9bbe 100644
--- a/security/nss/cmd/lib/secutil.c
+++ b/security/nss/cmd/lib/secutil.c
@@ -287,12 +287,10 @@ secu_InitSlotPassword(PK11SlotInfo *slot, PRBool retry, void *arg)
}
/* we have no password, so initialize database with one */
- PR_fprintf(PR_STDERR, "In order to finish creating your database, you\n");
- PR_fprintf(PR_STDERR, "must enter a password which will be used to\n");
- PR_fprintf(PR_STDERR, "encrypt this key and any future keys.\n\n");
- PR_fprintf(PR_STDERR, "The password must be at least 8 characters long,\n");
- PR_fprintf(PR_STDERR, "and must contain at least one non-alphabetic ");
- PR_fprintf(PR_STDERR, "character.\n\n");
+ PR_fprintf(PR_STDERR,
+ "Enter a password which will be used to encrypt your keys.\n"
+ "The password should be at least 8 characters long,\n"
+ "and should contain at least one non-alphabetic character.\n\n");
output = fopen(consoleName, "w");
if (output == NULL) {