[openssl-commits] [openssl] OpenSSL_1_1_1-stable update

Matt Caswell matt at openssl.org
Sun Jan 27 12:09:38 UTC 2019


The branch OpenSSL_1_1_1-stable has been updated
       via  24020351dc2f1565347a93ad60d70b065415c84f (commit)
      from  b62ef4e137e2eb384d5835502bbfe09908ec5a6a (commit)


- Log -----------------------------------------------------------------
commit 24020351dc2f1565347a93ad60d70b065415c84f
Author: Shigeki Ohtsu <ohtsu at ohtsu.org>
Date:   Thu Jan 24 22:45:50 2019 +0900

    s_client: fix not to send a command letter of R
    
    Before 1.1.0, this command letter is not sent to a server.
    
    CLA: trivial
    (cherry picked from commit bc180cb4887c2e82111cb714723a94de9f6d2c35)
    
    Reviewed-by: Ben Kaduk <kaduk at mit.edu>
    Reviewed-by: Matt Caswell <matt at openssl.org>
    (Merged from https://github.com/openssl/openssl/pull/8081)
    
    (cherry picked from commit 5478e2100260b8d6f9df77de875f37763d8eeec6)

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

Summary of changes:
 apps/s_client.c | 4 +---
 1 file changed, 1 insertion(+), 3 deletions(-)

diff --git a/apps/s_client.c b/apps/s_client.c
index dcaa10c..5925814 100644
--- a/apps/s_client.c
+++ b/apps/s_client.c
@@ -3031,9 +3031,7 @@ int s_client_main(int argc, char **argv)
                 BIO_printf(bio_err, "RENEGOTIATING\n");
                 SSL_renegotiate(con);
                 cbuf_len = 0;
-            }
-
-            if (!c_ign_eof && (cbuf[0] == 'K' || cbuf[0] == 'k' )
+	    } else if (!c_ign_eof && (cbuf[0] == 'K' || cbuf[0] == 'k' )
                     && cmdletters) {
                 BIO_printf(bio_err, "KEYUPDATE\n");
                 SSL_key_update(con,


More information about the openssl-commits mailing list