small fix for windows

This commit is contained in:
Nikola Petrov 2024-06-04 23:54:12 +02:00
parent ae83eae33d
commit 3d1f223086
2 changed files with 5 additions and 1 deletions

View File

@ -145,6 +145,9 @@ int main(int argc, char **argv)
case Arg::File:
arg_file(decrypted_buffer, encrypted_buffer, label, crypto, save_location_path.value());
break;
default:
break;
}
if (!login_info.has_value())

View File

@ -5,6 +5,7 @@
#include <cstring>
#include <filesystem>
#include <vector>
#include <algorithm>
#include "arg_func.hpp"
#include "func.hpp"
@ -335,5 +336,5 @@ void arg_file(Buffer &decrypted_buffer, Buffer &encrypted_buffer, const char *la
return;
crypto.encrypt(&decrypted_buffer, &encrypted_buffer);
encrypted_buffer.save_to_file(save);
encrypted_buffer.save_to_file(save.string());
}