From ee1def031ba8614250d72f6df5d61319a16f0a72 Mon Sep 17 00:00:00 2001 From: Matt Caswell Date: Fri, 25 Apr 2025 15:21:47 +0100 Subject: [PATCH] Clarify how s_client -ign_eof and -quiet impact command processing If -ign_eof -or -quiet are passed to s_client this implicitly turns off command processing (i.e. equivalent to -nocommands). This was stated on the man page in the "CONNECTED COMMANDS" section, but not in the documentation for "-ign_eof" or "-quiet" directly. We state it here as well to make it clearer. Fixes #27443 Reviewed-by: Paul Dale Reviewed-by: Tomas Mraz (Merged from https://github.com/openssl/openssl/pull/27500) (cherry picked from commit 20fb5dcb1e2b762545aa127058cc11efe09d6700) --- doc/man1/openssl-s_client.pod.in | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/doc/man1/openssl-s_client.pod.in b/doc/man1/openssl-s_client.pod.in index 332d5963019..a6bbfb07ef1 100644 --- a/doc/man1/openssl-s_client.pod.in +++ b/doc/man1/openssl-s_client.pod.in @@ -526,12 +526,12 @@ by some servers. =item B<-ign_eof> Inhibit shutting down the connection when end of file is reached in the -input. +input. This implicitly turns on B<-nocommands> as well. =item B<-quiet> Inhibit printing of session and certificate information. This implicitly -turns on B<-ign_eof> as well. +turns on B<-ign_eof> and B<-nocommands> as well. =item B<-no_ign_eof> -- 2.47.2