X-Git-Url: https://mattmccutchen.net/rsync/rsync.git/blobdiff_plain/669a31924ec8491774a737cf99920fdf78e03ab4..a3221d2ac14255c31109a617c4d62b949cd910de:/rsync.h diff --git a/rsync.h b/rsync.h index f1854d38..07f447b1 100644 --- a/rsync.h +++ b/rsync.h @@ -391,7 +391,7 @@ struct idev { #define IN_LOOPBACKNET 127 #endif -#define GID_NONE (gid_t) -1 +#define GID_NONE ((gid_t)-1) #define HL_CHECK_MASTER 0 #define HL_SKIP 1 @@ -458,11 +458,13 @@ struct file_list { struct file_struct **files; }; +#define SUMFLG_SAME_OFFSET (1<<0) + struct sum_buf { OFF_T offset; /**< offset in file of this chunk */ unsigned int len; /**< length of chunk of file */ - int i; /**< index of this chunk */ uint32 sum1; /**< simple checksum */ + short flags; /**< flag bits */ char sum2[SUM_LENGTH]; /**< checksum */ };