Skip to content

Commit

Permalink
mbedtls: enable CA path processing
Browse files Browse the repository at this point in the history
CA path processing was implemented when mbedtls.c was added to libcurl
in fe7590f, but it was never enabled.

Bug: #1877
Reported-by: SBKarr@users.noreply.github.com
  • Loading branch information
jay committed Sep 10, 2017
1 parent a14f715 commit 64bb7ae
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 5 deletions.
5 changes: 3 additions & 2 deletions docs/libcurl/opts/CURLOPT_CAPATH.3
Original file line number Diff line number Diff line change
Expand Up @@ -54,8 +54,9 @@ if(curl) {
}
.fi
.SH AVAILABILITY
This option is supported by the OpenSSL, GnuTLS and PolarSSL backends. The NSS
backend provides the option only for backward compatibility.
This option is supported by the OpenSSL, GnuTLS, PolarSSL and mbedTLS
(since 7.56.0) backends. The NSS backend provides the option only for
backward compatibility.
.SH RETURN VALUE
CURLE_OK if supported; or an error such as:

Expand Down
5 changes: 3 additions & 2 deletions docs/libcurl/opts/CURLOPT_PROXY_CAPATH.3
Original file line number Diff line number Diff line change
Expand Up @@ -55,8 +55,9 @@ if(curl) {
.SH AVAILABILITY
Added in 7.52.0

This option is supported by the OpenSSL, GnuTLS and PolarSSL backends. The NSS
backend provides the option only for backward compatibility.
This option is supported by the OpenSSL, GnuTLS, PolarSSL and mbedTLS
(since 7.56.0) backends. The NSS backend provides the option only for
backward compatibility.
.SH RETURN VALUE
CURLE_OK if supported; or an error such as:

Expand Down
2 changes: 1 addition & 1 deletion lib/vtls/mbedtls.c
Original file line number Diff line number Diff line change
Expand Up @@ -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 */
Expand Down

0 comments on commit 64bb7ae

Please sign in to comment.