From 832661b3a77cef6ba069f6414489c3e94d5d489c Mon Sep 17 00:00:00 2001 From: Daniel Stenberg Date: Wed, 31 Oct 2018 13:36:30 +0100 Subject: schannel: use Curl_ prefix for global private symbols Curl_verify_certificate() must use the Curl_ prefix since it is globally available in the lib and otherwise steps outside of our namespace! Closes #3201 --- lib/vtls/schannel.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'lib/vtls/schannel.c') diff --git a/lib/vtls/schannel.c b/lib/vtls/schannel.c index e4426924b..1a9da44d8 100644 --- a/lib/vtls/schannel.c +++ b/lib/vtls/schannel.c @@ -1114,7 +1114,7 @@ schannel_connect_step2(struct connectdata *conn, int sockindex) #ifdef HAS_MANUAL_VERIFY_API if(conn->ssl_config.verifypeer && BACKEND->use_manual_cred_validation) { - return verify_certificate(conn, sockindex); + return Curl_verify_certificate(conn, sockindex); } #endif -- cgit v1.2.3