File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -156,7 +156,7 @@ class GetRequest {
156156 foundFile = true ;
157157 } else {
158158 if (verbose) {
159- std::cerr << " libcurl's default CA certificate bundle file " << caInfo << " was not found on this system, nulling" << std::endl;
159+ std::cerr << " libcurl's default CA certificate bundle file " << ( caInfo ? caInfo : " " ) << " was not found on this system, nulling" << std::endl;
160160 }
161161 setOption (CURLOPT_CAINFO, " " );
162162 }
@@ -172,7 +172,7 @@ class GetRequest {
172172 foundDir = true ;
173173 } else {
174174 if (verbose) {
175- std::cerr << " libcurl's default CA certificate bundle directory " << caPath << " was not found on this system, nulling" << std::endl;
175+ std::cerr << " libcurl's default CA certificate bundle directory " << ( caPath ? caPath : " " ) << " was not found on this system, nulling" << std::endl;
176176 }
177177 setOption (CURLOPT_CAPATH, " " );
178178 }
You can’t perform that action at this time.
0 commit comments