From: Patrick Steuer Date: Wed, 20 Sep 2017 22:10:16 +0000 (+0200) Subject: Fix strict-warnings build X-Git-Tag: OpenSSL_1_1_1-pre1~640 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=b9ff0483bd6172ed55988295e8f4286854313ec4;p=oweals%2Fopenssl.git 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) --- 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