updated build system
All checks were successful
BlockStorage/repertory/pipeline/head This commit looks good
All checks were successful
BlockStorage/repertory/pipeline/head This commit looks good
This commit is contained in:
@ -133,7 +133,7 @@ auto enc_file::truncate(std::size_t size) -> bool {
|
||||
std::size_t total_read{};
|
||||
data_buffer data(
|
||||
utils::encryption::encrypting_reader::get_data_chunk_size());
|
||||
if (not read(data, offset), &total_read) {
|
||||
if (not i_file::read(data, offset, &total_read)) {
|
||||
return false;
|
||||
}
|
||||
data.resize(remain);
|
||||
@ -142,7 +142,7 @@ auto enc_file::truncate(std::size_t size) -> bool {
|
||||
return false;
|
||||
}
|
||||
|
||||
return write(data, offset);
|
||||
return i_file::write(data, offset);
|
||||
}
|
||||
|
||||
auto begin_chunk{
|
||||
|
Reference in New Issue
Block a user