From d733de97f51cdac1316c27fb4c96eb307d4842ce Mon Sep 17 00:00:00 2001 From: Wayne Davison Date: Mon, 27 Feb 2006 21:11:56 +0000 Subject: [PATCH] Added a "chain" item to the struct sum_buf. --- rsync.h | 1 + 1 file changed, 1 insertion(+) diff --git a/rsync.h b/rsync.h index 396a1c8f..86b143cd 100644 --- a/rsync.h +++ b/rsync.h @@ -560,6 +560,7 @@ struct sum_buf { OFF_T offset; /**< offset in file of this chunk */ int32 len; /**< length of chunk of file */ uint32 sum1; /**< simple checksum */ + int32 chain; /**< next hash-table collision */ short flags; /**< flag bits */ char sum2[SUM_LENGTH]; /**< checksum */ }; -- 2.34.1