From 5af4872baba5e1f8ad63eea0ca3a689fbaefc82d Mon Sep 17 00:00:00 2001 From: Ethan Looney Date: Tue, 28 Jul 2020 09:16:43 -0700 Subject: [PATCH] Changed lock type to 0 --- tests/api.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/api.c b/tests/api.c index 95688eba5..dfa770487 100644 --- a/tests/api.c +++ b/tests/api.c @@ -13679,7 +13679,7 @@ static int test_wc_LockMutex_ex (void) int ret = 0; #if defined(OPENSSL_EXTRA) || defined(HAVE_WEBSERVER) int flag = CRYPTO_LOCK; - int type = F_LOCK; + int type = 0; const char* file = "./test-LockMutex_ex.txt"; int line = 0; XFILE fp = XFOPEN("./test-LockMutex_ex.txt", "ar");