summaryrefslogtreecommitdiffstats
path: root/apps/dsaparam.c
diff options
context:
space:
mode:
authorDr. Stephen Henson <steve@openssl.org>1999-10-06 22:59:21 +0000
committerDr. Stephen Henson <steve@openssl.org>1999-10-06 22:59:21 +0000
commitdef38e38ec4fa5795414ee6536f3806f7fe7db13 (patch)
treef2ac2e18fb12c52ff117026ca43621595a1be660 /apps/dsaparam.c
parentd71c6bc5a409f4bf04165fd5bf41d85b868c6aac (diff)
Fix incorrect usage messages in some commands.
Diffstat (limited to 'apps/dsaparam.c')
-rw-r--r--apps/dsaparam.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/apps/dsaparam.c b/apps/dsaparam.c
index fb8d471108..9316fb2c8a 100644
--- a/apps/dsaparam.c
+++ b/apps/dsaparam.c
@@ -164,11 +164,11 @@ int MAIN(int argc, char **argv)
bad:
BIO_printf(bio_err,"%s [options] [bits] <infile >outfile\n",prog);
BIO_printf(bio_err,"where options are\n");
- BIO_printf(bio_err," -inform arg input format - one of DER TXT PEM\n");
- BIO_printf(bio_err," -outform arg output format - one of DER TXT PEM\n");
+ BIO_printf(bio_err," -inform arg input format - DER or PEM\n");
+ BIO_printf(bio_err," -outform arg output format - DER or PEM\n");
BIO_printf(bio_err," -in arg input file\n");
BIO_printf(bio_err," -out arg output file\n");
- BIO_printf(bio_err," -text check the DSA parameters\n");
+ BIO_printf(bio_err," -text print the key in text\n");
BIO_printf(bio_err," -C Output C code\n");
BIO_printf(bio_err," -noout no output\n");
BIO_printf(bio_err," -rand files to use for random number input\n");