src/backup/fixed_index.rs: do not use offset for checksum

This commit is contained in:
Dietmar Maurer
2019-09-23 11:30:20 +02:00
parent fb6026b66b
commit 9e603e254c
2 changed files with 2 additions and 2 deletions

View File

@ -194,7 +194,6 @@ impl FixedIndexReader {
for pos in 0..self.index_length {
chunk_end = ((pos+1) * self.chunk_size) as u64;
let digest = self.chunk_digest(pos);
csum.update(&chunk_end.to_le_bytes());
csum.update(digest);
}
let csum = csum.finish();