dedup

deduplicating backup program
git clone git://git.2f30.org/dedup
Log | Files | Refs | README | LICENSE

commit adb97266b7a63369102b54980308074fc8f060f1
parent cd603e224d63d39634324c26410e7174a7b58069
Author: sin <sin@2f30.org>
Date:   Tue, 26 Mar 2019 17:49:29 +0000

Fix comment in dedup.h

Diffstat:
Mdedup.h | 6+++---
1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/dedup.h b/dedup.h @@ -57,9 +57,9 @@ struct blk_desc { }; struct snap { - uint64_t size; /* size of snap (including block descriptors) */ - uint8_t msg[MSGSIZE]; /* arbitrary message attached to snap */ - uint8_t md[MDSIZE]; /* hash of snap */ + uint64_t size; /* size of snapshot (including block descriptors) */ + uint8_t msg[MSGSIZE]; /* arbitrary message attached to snapshot */ + uint8_t md[MDSIZE]; /* hash of snapshot (hash of all block descriptor hashes) */ uint64_t nr_blk_descs; struct blk_desc blk_desc[]; };