aboutsummaryrefslogtreecommitdiff
path: root/lib/vtls/schannel_verify.c
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2018-10-31 13:36:30 +0100
committerDaniel Stenberg <daniel@haxx.se>2018-11-01 09:39:45 +0100
commit832661b3a77cef6ba069f6414489c3e94d5d489c (patch)
treed6f24785ec7575fd2003a13b7ee1159d3afa384c /lib/vtls/schannel_verify.c
parentfc2c9a9614c04921d6ec8e024d68bb664b859dd9 (diff)
downloadgnurl-832661b3a77cef6ba069f6414489c3e94d5d489c.tar.gz
gnurl-832661b3a77cef6ba069f6414489c3e94d5d489c.tar.bz2
gnurl-832661b3a77cef6ba069f6414489c3e94d5d489c.zip
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
Diffstat (limited to 'lib/vtls/schannel_verify.c')
-rw-r--r--lib/vtls/schannel_verify.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/vtls/schannel_verify.c b/lib/vtls/schannel_verify.c
index 2516f5665..1b34bf725 100644
--- a/lib/vtls/schannel_verify.c
+++ b/lib/vtls/schannel_verify.c
@@ -406,7 +406,7 @@ cleanup:
return result;
}
-CURLcode verify_certificate(struct connectdata *conn, int sockindex)
+CURLcode Curl_verify_certificate(struct connectdata *conn, int sockindex)
{
SECURITY_STATUS status;
struct Curl_easy *data = conn->data;