]> git.ipfire.org Git - thirdparty/curl.git/commitdiff
tool_operate: fix a stray Curl_ symbol use
authorDaniel Stenberg <daniel@haxx.se>
Mon, 10 Mar 2025 22:05:49 +0000 (23:05 +0100)
committerDaniel Stenberg <daniel@haxx.se>
Tue, 11 Mar 2025 06:25:12 +0000 (07:25 +0100)
src/tool_operate.c

index f15d1c04f4c7a494182d1f93d7c89b6dafa6e04d..7f73fb191ee0cee7ea7ce361c81f5e101d94a411 100644 (file)
@@ -932,7 +932,7 @@ static CURLcode config2setopts(struct GlobalConfig *global,
     if(env) {
       curl_off_t num;
       const char *p = env;
-      if(!Curl_str_number(&p, &num, LONG_MAX))
+      if(!curlx_str_number(&p, &num, LONG_MAX))
         my_setopt(curl, CURLOPT_BUFFERSIZE, (long)num);
     }
     else