From fb3845a438cad9ef09eb1b0b86388ce99a726502 Mon Sep 17 00:00:00 2001 From: Yang Tse Date: Thu, 22 Sep 2011 11:16:34 +0200 Subject: curl tool: reviewed code moved to tool_*.[ch] files my_setopt and my_setopt_str no longer ignores curl_easy_setopt result. Fixed some OOM handling issues. --- src/tool_doswin.c | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) (limited to 'src/tool_doswin.c') diff --git a/src/tool_doswin.c b/src/tool_doswin.c index 7fab33b80..5250b2cee 100644 --- a/src/tool_doswin.c +++ b/src/tool_doswin.c @@ -30,6 +30,7 @@ #ifdef WIN32 # include # include "tool_cfgable.h" +# include "tool_libinfo.h" #endif #include "tool_bname.h" @@ -251,10 +252,8 @@ CURLcode FindWin32CACert(struct Configurable *config, const char *bundle_file) { CURLcode result = CURLE_OK; - curl_version_info_data *info = curl_version_info(CURLVERSION_NOW); - - /* search and set cert file only if "we" support SSL */ - if(info->features & CURL_VERSION_SSL) { + /* search and set cert file only if libcurl supports SSL */ + if(curlinfo->features & CURL_VERSION_SSL) { DWORD res_len; DWORD buf_tchar_size = PATH_MAX + 1; -- cgit v1.2.3