diff options
author | Matthias St. Pierre <matthias.st.pierre@ncp-e.com> | 2023-09-24 01:24:59 +0200 |
---|---|---|
committer | Tomas Mraz <tomas@openssl.org> | 2023-10-04 12:22:04 +0200 |
commit | b49cafd86b295aa5e177d6c1368b06a1202ec2b3 (patch) | |
tree | 7f011abfb62e09469d2db8cbd50497e7865f5f37 /test/evp_extra_test.c | |
parent | Correct documentation for PKCS5_PBKDF2_HMAC (diff) | |
download | openssl-b49cafd86b295aa5e177d6c1368b06a1202ec2b3.tar.xz openssl-b49cafd86b295aa5e177d6c1368b06a1202ec2b3.zip |
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)
Diffstat (limited to 'test/evp_extra_test.c')
-rw-r--r-- | test/evp_extra_test.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/test/evp_extra_test.c b/test/evp_extra_test.c index bec16144f9..41de4af6ab 100644 --- a/test/evp_extra_test.c +++ b/test/evp_extra_test.c @@ -1267,11 +1267,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; @@ -1279,7 +1279,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; |