Commit 3bb400ca authored by Wayne Davison's avatar Wayne Davison

If --backup was used with --inplace, we don't limit the basis-file

matches (as we normally would) because the receiver is using the
backup-file as the basis-file.
parent cd6aa5b5
...@@ -24,6 +24,7 @@ extern int am_server; ...@@ -24,6 +24,7 @@ extern int am_server;
extern int do_progress; extern int do_progress;
extern int checksum_seed; extern int checksum_seed;
extern int inplace; extern int inplace;
extern int make_backups;
typedef unsigned short tag; typedef unsigned short tag;
...@@ -204,7 +205,7 @@ static void hash_search(int f,struct sum_struct *s, ...@@ -204,7 +205,7 @@ static void hash_search(int f,struct sum_struct *s,
/* inplace: ensure chunk's offset is either >= our /* inplace: ensure chunk's offset is either >= our
* offset or that the data didn't move. */ * offset or that the data didn't move. */
if (inplace && s->sums[i].offset < offset if (inplace && !make_backups && s->sums[i].offset < offset
&& !(s->sums[i].flags & SUMFLG_SAME_OFFSET)) && !(s->sums[i].flags & SUMFLG_SAME_OFFSET))
continue; continue;
...@@ -226,7 +227,7 @@ static void hash_search(int f,struct sum_struct *s, ...@@ -226,7 +227,7 @@ static void hash_search(int f,struct sum_struct *s,
/* If inplace is enabled, the best possible match is /* If inplace is enabled, the best possible match is
* one with an identical offset, so we prefer that over * one with an identical offset, so we prefer that over
* the following want_i optimization. */ * the following want_i optimization. */
if (inplace) { if (inplace && !make_backups) {
do { do {
size_t i2 = targets[j].i; size_t i2 = targets[j].i;
if (s->sums[i2].offset != offset) if (s->sums[i2].offset != offset)
...@@ -249,7 +250,7 @@ static void hash_search(int f,struct sum_struct *s, ...@@ -249,7 +250,7 @@ static void hash_search(int f,struct sum_struct *s,
/* we've found a match, but now check to see /* we've found a match, but now check to see
* if want_i can hint at a better match. */ * if want_i can hint at a better match. */
if (i != want_i && want_i < s->count if (i != want_i && want_i < s->count
&& (!inplace || s->sums[want_i].offset >= offset && (!inplace || make_backups || s->sums[want_i].offset >= offset
|| s->sums[want_i].flags & SUMFLG_SAME_OFFSET) || s->sums[want_i].flags & SUMFLG_SAME_OFFSET)
&& sum == s->sums[want_i].sum1 && sum == s->sums[want_i].sum1
&& memcmp(sum2, s->sums[want_i].sum2, s->s2length) == 0) { && memcmp(sum2, s->sums[want_i].sum2, s->s2length) == 0) {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment