[openssl] master update

Richard Levitte levitte at openssl.org
Sun Jun 13 19:48:50 UTC 2021


The branch master has been updated
       via  e2217b44f43753320ec74e62f8cbc6b9e9feaa9d (commit)
      from  0051746e03c65f5970d8ca424579d50f58a877e0 (commit)


- Log -----------------------------------------------------------------
commit e2217b44f43753320ec74e62f8cbc6b9e9feaa9d
Author: Richard Levitte <levitte at openssl.org>
Date:   Fri Jun 11 18:11:07 2021 +0200

    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 <pauli at openssl.org>
    (Merged from https://github.com/openssl/openssl/pull/15719)

-----------------------------------------------------------------------

Summary of changes:
 apps/s_client.c | 1 -
 1 file changed, 1 deletion(-)

diff --git a/apps/s_client.c b/apps/s_client.c
index 2b8f274433..ac9b08dfc2 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);


More information about the openssl-commits mailing list