aboutsummaryrefslogtreecommitdiff
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:22:57 +0200
commitf21889d1550abe64c37d434ba6dc6b5109fd1c10 (patch)
treee46c61538fcd730ffa013cc91d7dbffd4cd8244f
parentffef6d8f4da20a448421566f63e3283e0986c75b (diff)
downloadopenssl-f21889d1550abe64c37d434ba6dc6b5109fd1c10.zip
openssl-f21889d1550abe64c37d434ba6dc6b5109fd1c10.tar.gz
openssl-f21889d1550abe64c37d434ba6dc6b5109fd1c10.tar.bz2
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 861ba2c..e0636aa 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;