From: Matthias St. Pierre Date: Sat, 23 Sep 2023 23:24:59 +0000 (+0200) Subject: test: evp_extra: fix indentation error X-Git-Tag: openssl-3.1.4~44 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=f21889d1550abe64c37d434ba6dc6b5109fd1c10;p=thirdparty%2Fopenssl.git test: evp_extra: fix indentation error Reviewed-by: Paul Dale Reviewed-by: Tomas Mraz (Merged from https://github.com/openssl/openssl/pull/22185) (cherry picked from commit b49cafd86b295aa5e177d6c1368b06a1202ec2b3) --- diff --git a/test/evp_extra_test.c b/test/evp_extra_test.c index 861ba2cf55e..e0636aaa4e2 100644 --- a/test/evp_extra_test.c +++ b/test/evp_extra_test.c @@ -1133,11 +1133,11 @@ static int test_EVP_PKEY_sign(int tst) if (tst == 0 ) { if (!TEST_ptr(pkey = load_example_rsa_key())) - goto out; + goto out; } else if (tst == 1) { #ifndef OPENSSL_NO_DSA if (!TEST_ptr(pkey = load_example_dsa_key())) - goto out; + goto out; #else ret = 1; goto out; @@ -1145,7 +1145,7 @@ static int test_EVP_PKEY_sign(int tst) } else { #ifndef OPENSSL_NO_EC if (!TEST_ptr(pkey = load_example_ec_key())) - goto out; + goto out; #else ret = 1; goto out;