]> git.ipfire.org Git - thirdparty/openssl.git/blobdiff - test/ssltestlib.c
Fix a bug in create_ssl_ctx_pair()
[thirdparty/openssl.git] / test / ssltestlib.c
index ebd87cc7f0f6fd512e67ef3e7e9da0c88c541332..959e3296a84efa9525ccc4f613e682bce2654265 100644 (file)
@@ -531,10 +531,10 @@ int create_ssl_ctx_pair(const SSL_METHOD *sm, const SSL_METHOD *cm,
         goto err;
     if (clientctx != NULL
         && ((min_proto_version > 0
-             && !TEST_true(SSL_CTX_set_min_proto_version(serverctx,
+             && !TEST_true(SSL_CTX_set_min_proto_version(clientctx,
                                                          min_proto_version)))
             || (max_proto_version > 0
-                && !TEST_true(SSL_CTX_set_max_proto_version(serverctx,
+                && !TEST_true(SSL_CTX_set_max_proto_version(clientctx,
                                                             max_proto_version)))))
         goto err;