diff options
author | Philip Guenther <guenther@cvs.openbsd.org> | 2014-06-01 20:31:03 +0000 |
---|---|---|
committer | Philip Guenther <guenther@cvs.openbsd.org> | 2014-06-01 20:31:03 +0000 |
commit | 76011b8e7015f8bdb679df2c59248a2fabcb4e94 (patch) | |
tree | 59c0057920c50e2a4105709dd0664403965be556 /lib | |
parent | 7d8d22c343baa0a61f0f3c281e1d056277e2fe36 (diff) |
Make usage for -quiet match the manpage and fix a misspelling
Diffstat (limited to 'lib')
-rw-r--r-- | lib/libssl/src/apps/s_server.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/libssl/src/apps/s_server.c b/lib/libssl/src/apps/s_server.c index 51f6b478b1b..450f98c7bcb 100644 --- a/lib/libssl/src/apps/s_server.c +++ b/lib/libssl/src/apps/s_server.c @@ -391,7 +391,7 @@ sv_usage(void) BIO_printf(bio_err, " -crl_check - check the peer certificate has not been revoked by its CA.\n" \ " The CRL(s) are appended to the certificate file\n"); BIO_printf(bio_err, " -crl_check_all - check the peer certificate has not been revoked by its CA\n" \ - " or any other CRL in the CA chain. CRL(s) are appened to the\n" \ + " or any other CRL in the CA chain. CRL(s) are appended to the\n" \ " the certificate file.\n"); BIO_printf(bio_err, " -certform arg - certificate format (PEM or DER) PEM default\n"); BIO_printf(bio_err, " -key arg - Private Key file to use, in cert file if\n"); @@ -421,7 +421,7 @@ sv_usage(void) BIO_printf(bio_err, " -nocert - Don't use any certificates (Anon-DH)\n"); BIO_printf(bio_err, " -cipher arg - play with 'openssl ciphers' to see what goes here\n"); BIO_printf(bio_err, " -serverpref - Use server's cipher preferences\n"); - BIO_printf(bio_err, " -quiet - No server output\n"); + BIO_printf(bio_err, " -quiet - Inhibit printing of session and certificate information\n"); BIO_printf(bio_err, " -no_tmp_rsa - Do not generate a tmp RSA key\n"); #ifndef OPENSSL_NO_PSK BIO_printf(bio_err, " -psk_hint arg - PSK identity hint to use\n"); |