Update comment - dedup - deduplicating backup program HTML git clone git://bitreich.org/dedup/ git://enlrupgkhuxnvlhsf6lc3fziv5h2hhfrinws65d7roiv6bfj7d652fid.onion/dedup/ DIR Log DIR Files DIR Refs DIR Tags DIR README DIR LICENSE --- DIR commit 5e1aa604d5f99e97f55d41dd0324cec8b4badd5b DIR parent 23e23d22beed84fe844c6d76f453667d9a6f95c6 HTML Author: sin <sin@2f30.org> Date: Fri, 22 Feb 2019 13:21:22 +0000 Update comment Diffstat: M chunker.c | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) --- DIR 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++) {