summaryrefslogtreecommitdiff
path: root/test/fatalerrtest.c
diff options
context:
space:
mode:
authorMatt Caswell <matt@openssl.org>2020-03-18 17:17:37 +0000
committerMatt Caswell <matt@openssl.org>2020-04-19 14:40:55 +0100
commit5e30f2fd58bac0db5c23e33e865fa70bd6eb4349 (patch)
treeacaf649f6e91384529b104d220e6903f96764c3d /test/fatalerrtest.c
parent09ec5e6f5d08a854d40e4a1847759fc6a5793ec6 (diff)
downloadopenssl-new-5e30f2fd58bac0db5c23e33e865fa70bd6eb4349.tar.gz
Use a non-default libctx in sslapitest
We also don't load the default provider into the default libctx to make sure there is no accidental "leakage". Reviewed-by: Paul Dale <paul.dale@oracle.com> (Merged from https://github.com/openssl/openssl/pull/11508)
Diffstat (limited to 'test/fatalerrtest.c')
-rw-r--r--test/fatalerrtest.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/fatalerrtest.c b/test/fatalerrtest.c
index 184392cff2..c1e95af4b8 100644
--- a/test/fatalerrtest.c
+++ b/test/fatalerrtest.c
@@ -28,7 +28,7 @@ static int test_fatalerr(void)
0x17, 0x03, 0x03, 0x00, 0x05, 'D', 'u', 'm', 'm', 'y'
};
- if (!TEST_true(create_ssl_ctx_pair(TLS_method(), TLS_method(),
+ if (!TEST_true(create_ssl_ctx_pair(NULL, TLS_method(), TLS_method(),
TLS1_VERSION, 0,
&sctx, &cctx, cert, privkey)))
goto err;