From: Richard Levitte Date: Fri, 11 Jun 2021 16:11:07 +0000 (+0200) Subject: APPS: Remove an unreachable statement in s_client.c X-Git-Tag: openssl-3.0.0-beta1~81 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=e2217b44f43753320ec74e62f8cbc6b9e9feaa9d;p=thirdparty%2Fopenssl.git APPS: Remove an unreachable statement in s_client.c A Solaris compiler complains: "apps/s_client.c", line 2994: statement not reached It takes a bit of scrutiny to see that this is true, on all platforms. Reviewed-by: Paul Dale (Merged from https://github.com/openssl/openssl/pull/15719) --- diff --git a/apps/s_client.c b/apps/s_client.c index 2b8f2744335..ac9b08dfc2e 100644 --- a/apps/s_client.c +++ b/apps/s_client.c @@ -2991,7 +2991,6 @@ int s_client_main(int argc, char **argv) } } - ret = 0; shut: if (in_init) print_stuff(bio_c_out, con, full_log);