tool_operate: fix a stray Curl_ symbol use

This commit is contained in:
Daniel Stenberg 2025-03-10 23:05:49 +01:00
parent 438dd08b54
commit 64a79fdd7a
No known key found for this signature in database
GPG key ID: 5CC908FDB71E12C2

View 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