From: Wayne Davison Date: Mon, 5 Nov 2007 15:02:27 +0000 (+0000) Subject: Got rid of a redundant mtime check. X-Git-Url: https://mattmccutchen.net/rsync/rsync.git/commitdiff_plain/7df593f21f124b1907e33cc9699be2b0d8191440?hp=cac80887a688eb0c8dc077e80a9425e41d1f15be Got rid of a redundant mtime check. --- diff --git a/generator.c b/generator.c index db891994..f364eefd 100644 --- a/generator.c +++ b/generator.c @@ -903,9 +903,6 @@ static int try_dests_reg(struct file_struct *file, char *fname, int ndx, case 2: if (!unchanged_attrs(cmpbuf, file, sxp)) continue; - if (always_checksum > 0 && preserve_times - && cmp_time(sxp->st.st_mtime, file->modtime)) - continue; best_match = j; match_level = 3; break;