summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMatthias St. Pierre <matthias.st.pierre@ncp-e.com>2023-09-24 01:24:59 +0200
committerTomas Mraz <tomas@openssl.org>2023-10-04 12:23:10 +0200
commit91208ae9a6208eb7dc27ac688f0e9741a744db4d (patch)
treee938565930cf76313a882eabc9733b1556463517
parent624ea825e453bae891607ed6d19badab152d4831 (diff)
test: evp_extra: fix indentation error
Reviewed-by: Paul Dale <pauli@openssl.org> Reviewed-by: Tomas Mraz <tomas@openssl.org> (Merged from https://github.com/openssl/openssl/pull/22185) (cherry picked from commit b49cafd86b295aa5e177d6c1368b06a1202ec2b3)
-rw-r--r--test/evp_extra_test.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/test/evp_extra_test.c b/test/evp_extra_test.c
index a6667105dc..4a10e7fb04 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;