From 79837eeb8e4c4d5656beae9d37e575859629fb64 Mon Sep 17 00:00:00 2001 From: TakayukiMatsuo Date: Fri, 26 Mar 2021 04:30:36 +0900 Subject: [PATCH] Changed the function name to be called in the unit test to the OpeSSL function name. --- tests/api.c | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/tests/api.c b/tests/api.c index 75a6a2c6e..0750a4a3d 100644 --- a/tests/api.c +++ b/tests/api.c @@ -41925,11 +41925,11 @@ static int test_wolfSSL_CTX_set_ecdh_auto(void) int ret = 0; WOLFSSL_CTX* ctx = NULL; #if defined(OPENSSL_EXTRA) - printf(testingFmt, "wolfSSL_CTX_set_ecdh_auto"); - AssertIntEQ( wolfSSL_CTX_set_ecdh_auto(NULL,0),1); - AssertIntEQ( wolfSSL_CTX_set_ecdh_auto(NULL,1),1); - AssertIntEQ( wolfSSL_CTX_set_ecdh_auto(ctx,0),1); - AssertIntEQ( wolfSSL_CTX_set_ecdh_auto(ctx,1),1); + printf(testingFmt, "SSL_CTX_set_ecdh_auto"); + AssertIntEQ( SSL_CTX_set_ecdh_auto(NULL,0),1); + AssertIntEQ( SSL_CTX_set_ecdh_auto(NULL,1),1); + AssertIntEQ( SSL_CTX_set_ecdh_auto(ctx,0),1); + AssertIntEQ( SSL_CTX_set_ecdh_auto(ctx,1),1); printf(resultFmt, passed); #endif /* OPENSSL_EXTRA */ (void)ctx;