Fixed curl error in OS X bundles

This commit is contained in:
LRFLEW 2015-12-20 16:21:51 -06:00
parent e0ac85891b
commit ff62a28ccd
1 changed files with 2 additions and 2 deletions

View File

@ -117,8 +117,8 @@ http_json_response *http_request_json(const http_json_request *request)
curl_easy_setopt(curl, CURLOPT_HTTPHEADER, headers);
curl_easy_setopt(curl, CURLOPT_FOLLOWLOCATION, true);
curl_easy_setopt(curl, CURLOPT_SSL_VERIFYPEER, true);
#ifndef __linux__
// On GNU/Linux, curl will use the system certs by default
#ifdef _WIN32
// On GNU/Linux (and OS X), curl will use the system certs by default
curl_easy_setopt(curl, CURLOPT_CAINFO, "curl-ca-bundle.crt");
#endif
curl_easy_setopt(curl, CURLOPT_URL, request->url);