[openssl-commits] [openssl] master update

kaduk at mit.edu kaduk at mit.edu
Thu Sep 21 21:01:50 UTC 2017


The branch master has been updated
       via  b9ff0483bd6172ed55988295e8f4286854313ec4 (commit)
      from  3a1548643f3f9ef6905e31bcde8603a525789abc (commit)


- Log -----------------------------------------------------------------
commit b9ff0483bd6172ed55988295e8f4286854313ec4
Author: Patrick Steuer <patrick.steuer at de.ibm.com>
Date:   Thu Sep 21 00:10:16 2017 +0200

    Fix strict-warnings build
    
    Compilation failed due to -Werror=misleading-indentation.
    
    Signed-off-by: Patrick Steuer <patrick.steuer at de.ibm.com>
    
    Reviewed-by: Rich Salz <rsalz at openssl.org>
    Reviewed-by: Paul Dale <paul.dale at oracle.com>
    Reviewed-by: Ben Kaduk <kaduk at mit.edu>
    (Merged from https://github.com/openssl/openssl/pull/4395)

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

Summary of changes:
 ssl/t1_lib.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/ssl/t1_lib.c b/ssl/t1_lib.c
index 2aa4261..de13de6 100644
--- a/ssl/t1_lib.c
+++ b/ssl/t1_lib.c
@@ -2328,7 +2328,7 @@ int tls_choose_sigalg(SSL *s, int *al)
                 if (lu->sig_idx != SSL_PKEY_RSA_PSS_SIGN
                         || !ssl_has_cert(s, SSL_PKEY_RSA))
                     continue;
-                    sig_idx = SSL_PKEY_RSA;
+                sig_idx = SSL_PKEY_RSA;
             }
             if (lu->sig == EVP_PKEY_EC) {
 #ifndef OPENSSL_NO_EC


More information about the openssl-commits mailing list