Update patch, the previous version of the patch had corrections to words that were correct in UK English but not in US English, unless the OpenSSL project wants to use US English only now then disregard this updated patch.
--- Kurt Cancemi https://www.x64Architecture.com
>From 27c9379231ac6cce87120f3a432ea8c61b7d7034 Mon Sep 17 00:00:00 2001 From: Kurt Cancemi <[email protected]> Date: Thu, 21 Aug 2014 17:21:16 -0400 Subject: [PATCH] s_server.c: fix typos. --- apps/s_server.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/apps/s_server.c b/apps/s_server.c index 1e15281..65b76ba 100644 --- a/apps/s_server.c +++ b/apps/s_server.c @@ -459,10 +459,10 @@ static void sv_usage(void) BIO_printf(bio_err," -serverinfo arg - PEM serverinfo file for certificate\n"); #endif BIO_printf(bio_err," -no_resumption_on_reneg - set SSL_OP_NO_SESSION_RESUMPTION_ON_RENEGOTIATION flag\n"); - BIO_printf(bio_err," -crl_check - check the peer certificate has not been revoked by its CA.\n" \ + BIO_printf(bio_err," -crl_check - check if 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" \ + BIO_printf(bio_err," -crl_check_all - check if the peer certificate has not been revoked by its CA\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"); -- 2.1.0
