From b9ff0483bd6172ed55988295e8f4286854313ec4 Mon Sep 17 00:00:00 2001 From: Patrick Steuer Date: Thu, 21 Sep 2017 00:10:16 +0200 Subject: [PATCH] Fix strict-warnings build Compilation failed due to -Werror=misleading-indentation. Signed-off-by: Patrick Steuer Reviewed-by: Rich Salz Reviewed-by: Paul Dale Reviewed-by: Ben Kaduk (Merged from https://github.com/openssl/openssl/pull/4395) --- 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 2aa4261126..de13de6ba6 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 -- 2.25.1