]> git.ipfire.org Git - thirdparty/openssl.git/commitdiff
test: evp_extra: fix indentation error
authorMatthias St. Pierre <matthias.st.pierre@ncp-e.com>
Sat, 23 Sep 2023 23:24:59 +0000 (01:24 +0200)
committerTomas Mraz <tomas@openssl.org>
Wed, 4 Oct 2023 10:22:04 +0000 (12:22 +0200)
Reviewed-by: Paul Dale <pauli@openssl.org>
Reviewed-by: Tomas Mraz <tomas@openssl.org>
(Merged from https://github.com/openssl/openssl/pull/22185)

test/evp_extra_test.c

index bec16144f994a8ac34f85272c7b2ae20fc07b23a..41de4af6abd87205ba98bca2947bb0c2f818dc0e 100644 (file)
@@ -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;