summaryrefslogtreecommitdiff
path: root/apps
diff options
context:
space:
mode:
authorRalf S. Engelschall <rse@openssl.org>1999-02-25 11:26:26 +0000
committerRalf S. Engelschall <rse@openssl.org>1999-02-25 11:26:26 +0000
commitea14a91f64c1d277f6899c5e451202d5a4e42f6d (patch)
tree0fa66fd9ea43d0b222c96eda96c5eb6a4d485742 /apps
parent4b8f2ce648be38595bcc88fbf62b7022c6c3c4d5 (diff)
downloadopenssl-new-ea14a91f64c1d277f6899c5e451202d5a4e42f6d.tar.gz
Move s_server -dcert and -dkey options out of the undocumented feature area
because they are useful for the DSA situation and should be recognized by the users. Thanks to Steve for the original hint.
Diffstat (limited to 'apps')
-rw-r--r--apps/s_server.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/apps/s_server.c b/apps/s_server.c
index 35b9718b63..dbe8a801e9 100644
--- a/apps/s_server.c
+++ b/apps/s_server.c
@@ -196,6 +196,8 @@ static void sv_usage()
BIO_printf(bio_err," (default is %s)\n",TEST_CERT);
BIO_printf(bio_err," -key arg - RSA file to use, PEM format assumed, in cert file if\n");
BIO_printf(bio_err," not specified (default is %s)\n",TEST_CERT);
+ BIO_printf(bio_err," -dcert arg - second certificate file to use (usually for DSA)\n");
+ BIO_printf(bio_err," -dkey arg - second private key file to use (usually for DSA)\n");
#ifdef FIONBIO
BIO_printf(bio_err," -nbio - Run with non-blocking IO\n");
#endif