From 478a5abff2c6a0d0bb2e84c131bc0b1f61f70ca4 Mon Sep 17 00:00:00 2001 From: "Scott E. Graves" Date: Sat, 30 Aug 2025 16:14:35 -0500 Subject: [PATCH] Implement secure key via KDF for transparent data encryption/decryption #60 --- .../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 db4eef94..40b0cf68 100644 --- a/repertory/librepertory/src/comm/curl/requests/http_put_file.cpp +++ b/repertory/librepertory/src/comm/curl/requests/http_put_file.cpp @@ -22,7 +22,6 @@ #include "comm/curl/requests/http_put_file.hpp" #include "utils/error_utils.hpp" -#include "utils/string.hpp" namespace repertory::curl::requests { auto http_put_file::set_method(CURL *curl, stop_type &stop_requested) const @@ -52,7 +51,7 @@ auto http_put_file::set_method(CURL *curl, stop_type &stop_requested) const utils::file::file::open_or_create_file(source_path), }); - if (not*read_info->file) { + if (not *read_info->file) { utils::error::raise_url_error(function_name, get_path(), source_path, std::runtime_error("failed to open file")); return false;