From: Wayne Davison Date: Sat, 6 Nov 2010 15:14:18 +0000 (-0700) Subject: Mention seek effect of an unmoved --inplace chunk. X-Git-Url: https://mattmccutchen.net/rsync/rsync.git/commitdiff_plain/55f767c5caab53386e17686c69dd1bfe5afe752e Mention seek effect of an unmoved --inplace chunk. --- diff --git a/receiver.c b/receiver.c index d5a338cc..fc3e40c1 100644 --- a/receiver.c +++ b/receiver.c @@ -285,8 +285,9 @@ static int receive_data(int f_in, char *fname_r, int fd_r, OFF_T size_r, if (DEBUG_GTE(DELTASUM, 3)) { rprintf(FINFO, - "chunk[%d] of size %ld at %s offset=%s\n", - i, (long)len, big_num(offset2), big_num(offset)); + "chunk[%d] of size %ld at %s offset=%s%s\n", + i, (long)len, big_num(offset2), big_num(offset), + updating_basis_or_equiv && offset == offset2 ? " (seek)" : ""); } if (mapbuf) {