]> git.ipfire.org Git - thirdparty/rsync.git/commitdiff
Added a "chain" item to the struct sum_buf.
authorWayne Davison <wayned@samba.org>
Mon, 27 Feb 2006 21:11:56 +0000 (21:11 +0000)
committerWayne Davison <wayned@samba.org>
Mon, 27 Feb 2006 21:11:56 +0000 (21:11 +0000)
rsync.h

diff --git a/rsync.h b/rsync.h
index 396a1c8fc480a1f4f0baecf7d3f782ad05f168cd..86b143cd0e1618ca37c2e6d888ac43d8456c2198 100644 (file)
--- 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  */
 };