1
0
mirror of https://github.com/nmap/nmap.git synced 2025-12-26 17:39:03 +00:00

Use the default Windows CA store.

This commit is contained in:
david
2011-12-19 05:16:34 +00:00
parent 4b401ad4be
commit 7d14c0f058

View File

@@ -749,6 +749,10 @@ static svn_error_t *checkout_svn(const char *url, const char *path)
0, /* retry limit */
pool);
APR_ARRAY_PUSH(providers, svn_auth_provider_object_t *) = provider;
svn_auth_get_platform_specific_provider(&provider,
"windows", "ssl_server_trust", pool);
if (provider != NULL)
APR_ARRAY_PUSH(providers, svn_auth_provider_object_t *) = provider;
/* Register the auth providers into the client context's auth_baton. */
svn_auth_open(&ctx->auth_baton, providers, pool);