summaryrefslogtreecommitdiff
path: root/security/nss/cmd
diff options
context:
space:
mode:
authorwtc%netscape.com <devnull@localhost>2002-07-17 18:39:02 +0000
committerwtc%netscape.com <devnull@localhost>2002-07-17 18:39:02 +0000
commitddcea8a19d7efabbb0923983d61ea116d353dd0f (patch)
treea4dd003a0767671f60ff34db0d3361af9636b300 /security/nss/cmd
parentdd9acab7c1ad3e54853c75063976debd82116501 (diff)
downloadnss-hg-ddcea8a19d7efabbb0923983d61ea116d353dd0f.tar.gz
Bug 157946: removed the unused -m option. Added the -v option to Usage().
Diffstat (limited to 'security/nss/cmd')
-rw-r--r--security/nss/cmd/pk12util/pk12util.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/security/nss/cmd/pk12util/pk12util.c b/security/nss/cmd/pk12util/pk12util.c
index 6c272b841..1a6163aab 100644
--- a/security/nss/cmd/pk12util/pk12util.c
+++ b/security/nss/cmd/pk12util/pk12util.c
@@ -54,8 +54,10 @@ Usage(char *progName)
FPS "Usage: %s -i importfile [-d certdir] [-P dbprefix] [-h tokenname]\n",
progName);
FPS "\t\t [-k slotpwfile | -K slotpw] [-w p12filepwfile | -W p12filepw]\n");
+ FPS "\t\t [-v]\n");
FPS "Usage: %s -o exportfile -n certname [-d certdir] [-P dbprefix]\n", progName);
FPS "\t\t [-k slotpwfile | -K slotpw] [-w p12filepwfile | -W p12filepw]\n");
+ FPS "\t\t [-v]\n");
exit(PK12UERR_USAGE);
}
@@ -711,7 +713,6 @@ enum {
opt_Import,
opt_SlotPWFile,
opt_SlotPW,
- opt_Mode,
opt_Nickname,
opt_Export,
opt_P12FilePWFile,
@@ -727,7 +728,6 @@ static secuCommandFlag pk12util_options[] =
{ /* opt_Import */ 'i', PR_TRUE, 0, PR_FALSE },
{ /* opt_SlotPWFile */ 'k', PR_TRUE, 0, PR_FALSE },
{ /* opt_SlotPW */ 'K', PR_TRUE, 0, PR_FALSE },
- { /* opt_Mode */ 'm', PR_TRUE, 0, PR_FALSE },
{ /* opt_Nickname */ 'n', PR_TRUE, 0, PR_FALSE },
{ /* opt_Export */ 'o', PR_TRUE, 0, PR_FALSE },
{ /* opt_P12FilePWFile */ 'w', PR_TRUE, 0, PR_FALSE },