dedup

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

commit 5e1aa604d5f99e97f55d41dd0324cec8b4badd5b
parent 23e23d22beed84fe844c6d76f453667d9a6f95c6
Author: sin <sin@2f30.org>
Date:   Fri, 22 Feb 2019 13:21:22 +0000

Update comment

Diffstat:
Mchunker.c | 5++---
1 file changed, 2 insertions(+), 3 deletions(-)

diff --git a/chunker.c b/chunker.c @@ -51,9 +51,8 @@ get_chunk_size(struct chunker *chunker) * recurring pattern occuring on the data stream. A fixed window * of WINSIZE bytes is slid over the data, and a rolling hash is * computed for this window. - * When the rolling hash matches a given pattern (see HASHMSK), - * the block is chunked at the end of that window, thus making - * WINSIZE the smallest possible block size. + * When the rolling hash matches a given pattern the block is chunked + * at the end of that window. */ fp = buzh_init(bp, WINSIZE); for (i = chunker->rpos; i < chunker->wpos - WINSIZE; i++) {