]> granicus.if.org Git - curl/commitdiff
tool_operate: remove mixed declaration
authorJay Satiro <raysatiro@yahoo.com>
Mon, 28 Mar 2016 20:46:26 +0000 (16:46 -0400)
committerJay Satiro <raysatiro@yahoo.com>
Mon, 28 Mar 2016 20:46:26 +0000 (16:46 -0400)
This is a follow up to the previous commit.

src/tool_operate.c

index e8df7ffbbc3b6cd663f621fabf09a56c04b2a36c..cefd6ccbf791b1604778b16cc4551a7ecaac27bd 100644 (file)
@@ -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) {