This commit is contained in:
Scott E. Graves 2024-10-24 14:42:47 -05:00
parent 56e27e3184
commit 7c2a245944

View File

@ -65,7 +65,6 @@ auto http_put_file::set_method(CURL *curl, stop_type &stop_requested) const
curl_easy_setopt(curl, CURLOPT_READDATA, read_info.get()); curl_easy_setopt(curl, CURLOPT_READDATA, read_info.get());
curl_easy_setopt(curl, CURLOPT_READFUNCTION, read_file_data); curl_easy_setopt(curl, CURLOPT_READFUNCTION, read_file_data);
curl_easy_setopt(curl, CURLOPT_INFILESIZE_LARGE, file_size); curl_easy_setopt(curl, CURLOPT_INFILESIZE_LARGE, file_size);
}
return true; return true;
} }