diff options
author | Dr. David von Oheimb <David.von.Oheimb@siemens.com> | 2021-05-17 11:04:40 +0200 |
---|---|---|
committer | Dr. David von Oheimb <dev@ddvo.net> | 2021-05-20 16:24:43 +0200 |
commit | 359efeac3f9b99c5f734b90db8a4c5bfadb7323a (patch) | |
tree | 357cf0451222aae4270fea14b7454af4e40a74a2 /apps/s_server.c | |
parent | find-doc-nits: Check that man1 SYNOPSIS and OPTIONS contain same options (diff) | |
download | openssl-359efeac3f9b99c5f734b90db8a4c5bfadb7323a.tar.xz openssl-359efeac3f9b99c5f734b90db8a4c5bfadb7323a.zip |
DOC: Fix nits found by new check on SYNOPSIS and OPTIONS consistency
Reviewed-by: Paul Dale <pauli@openssl.org>
(Merged from https://github.com/openssl/openssl/pull/15299)
Diffstat (limited to 'apps/s_server.c')
-rw-r--r-- | apps/s_server.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/apps/s_server.c b/apps/s_server.c index 292ffbe762..0ff436be1e 100644 --- a/apps/s_server.c +++ b/apps/s_server.c @@ -718,7 +718,7 @@ const OPTIONS s_server_options[] = { OPT_SECTION("General"), {"help", OPT_HELP, '-', "Display this summary"}, {"ssl_config", OPT_SSL_CONFIG, 's', - "Configure SSL_CTX using the configuration 'val'"}, + "Configure SSL_CTX using the given configuration value"}, #ifndef OPENSSL_NO_SSL_TRACE {"trace", OPT_TRACE, '-', "trace protocol messages"}, #endif @@ -786,7 +786,7 @@ const OPTIONS s_server_options[] = { {"servername", OPT_SERVERNAME, 's', "Servername for HostName TLS extension"}, {"servername_fatal", OPT_SERVERNAME_FATAL, '-', - "mismatch send fatal alert (default warning alert)"}, + "On servername mismatch send fatal alert (default warning alert)"}, {"nbio_test", OPT_NBIO_TEST, '-', "Test with the non-blocking test bio"}, {"crlf", OPT_CRLF, '-', "Convert LF from terminal into CRLF"}, {"quiet", OPT_QUIET, '-', "No server output"}, @@ -823,13 +823,13 @@ const OPTIONS s_server_options[] = { "use URI as certificate store to verify CA certificate"}, {"no_cache", OPT_NO_CACHE, '-', "Disable session cache"}, {"ext_cache", OPT_EXT_CACHE, '-', - "Disable internal cache, setup and use external cache"}, + "Disable internal cache, set up and use external cache"}, {"verify_return_error", OPT_VERIFY_RET_ERROR, '-', "Close connection on verification error"}, {"verify_quiet", OPT_VERIFY_QUIET, '-', "No verify output except verify errors"}, - {"ign_eof", OPT_IGN_EOF, '-', "ignore input eof (default when -quiet)"}, - {"no_ign_eof", OPT_NO_IGN_EOF, '-', "Do not ignore input eof"}, + {"ign_eof", OPT_IGN_EOF, '-', "Ignore input EOF (default when -quiet)"}, + {"no_ign_eof", OPT_NO_IGN_EOF, '-', "Do not ignore input EOF"}, #ifndef OPENSSL_NO_OCSP OPT_SECTION("OCSP"), @@ -872,7 +872,7 @@ const OPTIONS s_server_options[] = { OPT_SECTION("Network"), {"nbio", OPT_NBIO, '-', "Use non-blocking IO"}, {"timeout", OPT_TIMEOUT, '-', "Enable timeouts"}, - {"mtu", OPT_MTU, 'p', "Set link layer MTU"}, + {"mtu", OPT_MTU, 'p', "Set link-layer MTU"}, {"read_buf", OPT_READ_BUF, 'p', "Default read buffer size to be used for connections"}, {"split_send_frag", OPT_SPLIT_SEND_FRAG, 'p', |