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 {
156
156
foundFile = true ;
157
157
} else {
158
158
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;
160
160
}
161
161
setOption (CURLOPT_CAINFO, " " );
162
162
}
@@ -172,7 +172,7 @@ class GetRequest {
172
172
foundDir = true ;
173
173
} else {
174
174
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;
176
176
}
177
177
setOption (CURLOPT_CAPATH, " " );
178
178
}
You can’t perform that action at this time.
0 commit comments