tUpdate comment - dedup - deduplicating backup program
(HTM) git clone git://git.z3bra.org/dedup.git
(DIR) Log
(DIR) Files
(DIR) Refs
(DIR) README
(DIR) LICENSE
---
(DIR) commit 5e1aa604d5f99e97f55d41dd0324cec8b4badd5b
(DIR) parent 23e23d22beed84fe844c6d76f453667d9a6f95c6
(HTM) 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
t@@ -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++) {