src/backup/data_blob.rs: define create_zero_chunk as member function

and rename it to build_zero_chunk()
This commit is contained in:
Dietmar Maurer 2019-10-14 10:58:26 +02:00
parent 2745151d93
commit 4c9f753c56

View File

@ -425,14 +425,13 @@ impl <'a, 'b> DataChunkBuilder<'a, 'b> {
Ok((chunk, self.digest))
}
}
/// Create a chunk filled with zeroes
pub fn create_zero_chunk(
/// Create a chunk filled with zeroes
pub fn build_zero_chunk(
crypt_config: Option<&CryptConfig>,
chunk_size: usize,
compress: bool,
) -> Result<(DataBlob, [u8; 32]), Error> {
) -> Result<(DataBlob, [u8; 32]), Error> {
let mut zero_bytes = Vec::with_capacity(chunk_size);
zero_bytes.resize(chunk_size, 0u8);
@ -442,4 +441,6 @@ pub fn create_zero_chunk(
}
chunk_builder.build()
}
}