diff options
author | Wayne Davison <wayned@samba.org> | 2006-12-28 07:54:07 +0000 |
---|---|---|
committer | Wayne Davison <wayned@samba.org> | 2006-12-28 07:54:07 +0000 |
commit | edb977215ba3ac0d64dc7208f67791afe11bb55d (patch) | |
tree | da2363d3c4cdee3f2d149943f9920385a84a6e78 /match.c | |
parent | 18233a170eb92412033ca9e1f7be341ffb4e31b3 (diff) | |
download | rsync-edb977215ba3ac0d64dc7208f67791afe11bb55d.tar.gz rsync-edb977215ba3ac0d64dc7208f67791afe11bb55d.tar.bz2 rsync-edb977215ba3ac0d64dc7208f67791afe11bb55d.zip |
Only append_mode > 0 now indicates option is enabled.
Diffstat (limited to 'match.c')
-rw-r--r-- | match.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -314,7 +314,7 @@ void match_sums(int f, struct sum_struct *s, struct map_struct *buf, OFF_T len) sum_init(checksum_seed); - if (append_mode) { + if (append_mode > 0) { OFF_T j = 0; for (j = CHUNK_SIZE; j < s->flength; j += CHUNK_SIZE) { if (buf && do_progress) |