summaryrefslogtreecommitdiff
path: root/apps/dsa.c
diff options
context:
space:
mode:
authorsteve <steve>1999-01-29 01:53:54 +0000
committersteve <steve>1999-01-29 01:53:54 +0000
commit288a0ec785d54ce92e1f93a896d2c6876ed6110b (patch)
tree6cc5b0caef296574e67a549a7130dfbdf4407983 /apps/dsa.c
parent797377d83be400242a5430d4063d295026c71b6e (diff)
downloadopenssl-288a0ec785d54ce92e1f93a896d2c6876ed6110b.tar.gz
Allow the -certfile argument to be used multiple times in crl2pkcs7.
Also fix typos in the usage messages: "inout" instead of "input".
Diffstat (limited to 'apps/dsa.c')
-rw-r--r--apps/dsa.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/apps/dsa.c b/apps/dsa.c
index 585116a67..f58ff35c7 100644
--- a/apps/dsa.c
+++ b/apps/dsa.c
@@ -1,5 +1,5 @@
/* apps/dsa.c */
-/* Copyright (C) 1995-1997 Eric Young (eay@cryptsoft.com)
+/* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com)
* All rights reserved.
*
* This package is an SSL implementation written
@@ -99,7 +99,7 @@ char **argv;
if (bio_err == NULL)
if ((bio_err=BIO_new(BIO_s_file())) != NULL)
- BIO_set_fp(bio_err,stderr,BIO_NOCLOSE);
+ BIO_set_fp(bio_err,stderr,BIO_NOCLOSE|BIO_FP_TEXT);
infile=NULL;
outfile=NULL;
@@ -154,7 +154,7 @@ bad:
BIO_printf(bio_err,"where options are\n");
BIO_printf(bio_err," -inform arg input format - one of DER NET PEM\n");
BIO_printf(bio_err," -outform arg output format - one of DER NET PEM\n");
- BIO_printf(bio_err," -in arg inout file\n");
+ BIO_printf(bio_err," -in arg input file\n");
BIO_printf(bio_err," -out arg output file\n");
BIO_printf(bio_err," -des encrypt PEM output with cbc des\n");
BIO_printf(bio_err," -des3 encrypt PEM output with ede cbc des using 168 bit key\n");