From 7c2a2459446107882a163c76605daa0a6ad0f429 Mon Sep 17 00:00:00 2001 From: "Scott E. Graves" Date: Thu, 24 Oct 2024 14:42:47 -0500 Subject: [PATCH] fix --- .../librepertory/src/comm/curl/requests/http_put_file.cpp | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/repertory/librepertory/src/comm/curl/requests/http_put_file.cpp b/repertory/librepertory/src/comm/curl/requests/http_put_file.cpp index ed1a5d6d..143ec942 100644 --- a/repertory/librepertory/src/comm/curl/requests/http_put_file.cpp +++ b/repertory/librepertory/src/comm/curl/requests/http_put_file.cpp @@ -65,8 +65,7 @@ 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_READFUNCTION, read_file_data); curl_easy_setopt(curl, CURLOPT_INFILESIZE_LARGE, file_size); -} -return true; + return true; } } // namespace repertory::curl::requests