diff options
author | Bertrand SIMONNET <bsimonnet@google.com> | 2015-08-12 17:50:40 -0700 |
---|---|---|
committer | Bertrand SIMONNET <bsimonnet@google.com> | 2015-08-13 10:56:35 -0700 |
commit | 403691be5e624785333f7a82803bc955bc084228 (patch) | |
tree | 1325975de840c2b1d3437f04f765e5e2d2a0e565 | |
parent | 4f3e942780aa6f86e4f3c283ba7d733fd65fa8c9 (diff) | |
download | android_external_curl-403691be5e624785333f7a82803bc955bc084228.tar.gz android_external_curl-403691be5e624785333f7a82803bc955bc084228.tar.bz2 android_external_curl-403691be5e624785333f7a82803bc955bc084228.zip |
curl_config.h: Update the default CA certificates path.
In Android, the CA certificates are installed in
/system/etc/security/cacerts.
BUG: 23016355
TEST: curl https://www.google.com works.
Change-Id: I1c70f035e9a2cd491fb7e9eb95afa06de0ae5c16
-rw-r--r-- | lib/curl_config.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/curl_config.h b/lib/curl_config.h index 3337067..88124ff 100644 --- a/lib/curl_config.h +++ b/lib/curl_config.h @@ -5,7 +5,7 @@ /* #undef CURL_CA_BUNDLE */ /* Location of default ca path */ -/* #undef CURL_CA_PATH */ +#define CURL_CA_PATH "/system/etc/security/cacerts" /* to disable cookies support */ /* #undef CURL_DISABLE_COOKIES */ |