mirror of
https://github.com/curl/curl.git
synced 2025-02-23 15:10:03 +08:00
tool_operate: remove mixed declaration
This is a follow up to the previous commit.
This commit is contained in:
parent
ab86007df4
commit
67a762928e
@ -204,6 +204,7 @@ static CURLcode operate_do(struct GlobalConfig *global,
|
||||
|
||||
CURLcode result = CURLE_OK;
|
||||
unsigned long li;
|
||||
bool capath_from_env;
|
||||
|
||||
/* Save the values of noprogress and isatty to restore them later on */
|
||||
bool orig_noprogress = global->noprogress;
|
||||
@ -239,7 +240,7 @@ static CURLcode operate_do(struct GlobalConfig *global,
|
||||
* We support the environment variable thing for non-Windows platforms
|
||||
* too. Just for the sake of it.
|
||||
*/
|
||||
bool capath_from_env = false;
|
||||
capath_from_env = false;
|
||||
if(!config->cacert &&
|
||||
!config->capath &&
|
||||
!config->insecure_ok) {
|
||||
|
Loading…
Reference in New Issue
Block a user