summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRichard Levitte <levitte@openssl.org>2021-06-09 11:00:00 +0200
committerRichard Levitte <levitte@openssl.org>2021-06-15 16:21:32 +0200
commit5d8ad7d385f1be0d2ef6fd3bfc91debdf3835c96 (patch)
treea75e4853592a8370a5254f7d607388fddd4c76dd
parent27fb7a0a27c2b35b8f385fa2a23588603c7a94a4 (diff)
test/evp_extra_test.c: Peek at the error instead of getting it.
If there is an error report, we want to get it printed too. Reviewed-by: Matt Caswell <matt@openssl.org> Reviewed-by: Tomas Mraz <tomas@openssl.org> (Merged from https://github.com/openssl/openssl/pull/15604)
-rw-r--r--test/evp_extra_test.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/evp_extra_test.c b/test/evp_extra_test.c
index 33bb698ff3..f10e0077ec 100644
--- a/test/evp_extra_test.c
+++ b/test/evp_extra_test.c
@@ -1294,7 +1294,7 @@ static int test_EVP_PKCS82PKEY_wrong_tag(void)
|| !TEST_int_gt(BIO_get_mem_data(membio, &membuf), 0)
|| !TEST_ptr(p8inf = d2i_PKCS8_PRIV_KEY_INFO_bio(membio, NULL))
|| !TEST_ptr(pkey2 = EVP_PKCS82PKEY(p8inf))
- || !TEST_int_eq(ERR_get_error(), 0)) {
+ || !TEST_int_eq(ERR_peek_last_error(), 0)) {
goto done;
}