diff options
author | Jay Satiro <raysatiro@yahoo.com> | 2017-09-10 03:22:05 -0400 |
---|---|---|
committer | Jay Satiro <raysatiro@yahoo.com> | 2017-09-10 03:22:05 -0400 |
commit | 64bb7ae6aed183f3efb02e5b489b2f34fa19fb9d (patch) | |
tree | 454611e2464fa48da8c6eaf0841015fcf9e1aa32 /lib/vtls/mbedtls.c | |
parent | a14f7152ce1c25cf110d3ccf640f9d4ce17dacd3 (diff) | |
download | curl-64bb7ae6aed183f3efb02e5b489b2f34fa19fb9d.tar.gz |
mbedtls: enable CA path processing
CA path processing was implemented when mbedtls.c was added to libcurl
in fe7590f, but it was never enabled.
Bug: https://github.com/curl/curl/issues/1877
Reported-by: SBKarr@users.noreply.github.com
Diffstat (limited to 'lib/vtls/mbedtls.c')
-rw-r--r-- | lib/vtls/mbedtls.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/vtls/mbedtls.c b/lib/vtls/mbedtls.c index 9fc7bd2e1..262f72531 100644 --- a/lib/vtls/mbedtls.c +++ b/lib/vtls/mbedtls.c @@ -1042,7 +1042,7 @@ static void *Curl_mbedtls_get_internals(struct ssl_connect_data *connssl, const struct Curl_ssl Curl_ssl_mbedtls = { { CURLSSLBACKEND_MBEDTLS, "mbedtls" }, /* info */ - 0, /* have_ca_path */ + 1, /* have_ca_path */ 0, /* have_certinfo */ 1, /* have_pinnedpubkey */ 1, /* have_ssl_ctx */ |