Skip to content

Commit

Permalink
vfs_curl: log CURL_CA_BUNDLE value on windows
Browse files Browse the repository at this point in the history
  • Loading branch information
Oleksiy-Yakovenko committed Aug 8, 2024
1 parent 3cb1d25 commit 5e51fd7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion plugins/vfs_curl/vfs_curl.c
Original file line number Diff line number Diff line change
Expand Up @@ -664,7 +664,7 @@ http_thread_func (void *ctx) {
curl_easy_setopt (curl, CURLOPT_HTTPHEADER, headers);
curl_easy_setopt (curl, CURLOPT_HTTP200ALIASES, ok_aliases);
#ifdef __MINGW32__
curl_easy_setopt (curl, CURLOPT_SSL_VERIFYPEER, 1);
trace("CURL_CA_BUNDLE: %s\n", getenv ("CURL_CA_BUNDLE"));
curl_easy_setopt (curl, CURLOPT_CAINFO, getenv ("CURL_CA_BUNDLE"));
#endif
if (fp->pos > 0 && fp->length >= 0) {
Expand Down

0 comments on commit 5e51fd7

Please sign in to comment.