small fix for windows
This commit is contained in:
parent
ae83eae33d
commit
3d1f223086
3
main.cpp
3
main.cpp
@ -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())
|
||||
|
@ -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());
|
||||
}
|
Loading…
x
Reference in New Issue
Block a user