aboutsummaryrefslogtreecommitdiffstats
path: root/test/ssltestlib.c
diff options
context:
space:
mode:
authorMatt Caswell <matt@openssl.org>2016-07-01 19:15:05 +0100
committerMatt Caswell <matt@openssl.org>2016-07-01 23:23:16 +0100
commitfe964f0c88f6780fd30b26e306484b981b0a8480 (patch)
tree83ddb1e15d2a0194223384a0d644a0a83be57f36 /test/ssltestlib.c
parent1e16987fc18cce9420dd3b76326b8d25746fa258 (diff)
downloadopenssl-fe964f0c88f6780fd30b26e306484b981b0a8480.tar.gz
Use the SSL_METHODs passed to create_ssl_ctx_pair()
Don't use hardcoded SSL_METHODs! Reviewed-by: Richard Levitte <levitte@openssl.org>
Diffstat (limited to 'test/ssltestlib.c')
-rw-r--r--test/ssltestlib.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/ssltestlib.c b/test/ssltestlib.c
index 5f780d75b8..357ef00314 100644
--- a/test/ssltestlib.c
+++ b/test/ssltestlib.c
@@ -16,8 +16,8 @@ int create_ssl_ctx_pair(const SSL_METHOD *sm, const SSL_METHOD *cm,
SSL_CTX *serverctx = NULL;
SSL_CTX *clientctx = NULL;
- serverctx = SSL_CTX_new(TLS_server_method());
- clientctx = SSL_CTX_new(TLS_client_method());
+ serverctx = SSL_CTX_new(sm);
+ clientctx = SSL_CTX_new(cm);
if (serverctx == NULL || clientctx == NULL) {
printf("Failed to create SSL_CTX\n");
goto err;