summaryrefslogtreecommitdiffstats
path: root/test/cmp_server_test.c
diff options
context:
space:
mode:
authorRichard Levitte <levitte@openssl.org>2020-11-04 12:23:19 +0100
committerRichard Levitte <levitte@openssl.org>2020-11-13 09:35:02 +0100
commit9311d0c471ca2eaa259e8c1bbbeb7c46394c7ba2 (patch)
treee82c26569e5a952980e65a746af920beed602aab /test/cmp_server_test.c
parentEVP: Adapt EVP_PKEY2PKCS8() to better handle provider-native keys (diff)
downloadopenssl-9311d0c471ca2eaa259e8c1bbbeb7c46394c7ba2.tar.xz
openssl-9311d0c471ca2eaa259e8c1bbbeb7c46394c7ba2.zip
Convert all {NAME}err() in crypto/ to their corresponding ERR_raise() call
This includes error reporting for libcrypto sub-libraries in surprising places. This was done using util/err-to-raise Reviewed-by: Paul Dale <paul.dale@oracle.com> (Merged from https://github.com/openssl/openssl/pull/13318)
Diffstat (limited to 'test/cmp_server_test.c')
-rw-r--r--test/cmp_server_test.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/cmp_server_test.c b/test/cmp_server_test.c
index d2a34695c3..8d0e1de759 100644
--- a/test/cmp_server_test.c
+++ b/test/cmp_server_test.c
@@ -55,7 +55,7 @@ static OSSL_CMP_PKISI *process_cert_request(OSSL_CMP_SRV_CTX *srv_ctx,
STACK_OF(X509) **chainOut,
STACK_OF(X509) **caPubs)
{
- CMPerr(0, dummy_errorCode);
+ ERR_raise(ERR_LIB_CMP, dummy_errorCode);
return NULL;
}