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.2.0-beta1~134 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=b49cafd86b295aa5e177d6c1368b06a1202ec2b3;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) --- diff --git a/test/evp_extra_test.c b/test/evp_extra_test.c index bec16144f99..41de4af6abd 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;