A patch from Stefan Müller to add the --downdate option, which works in the opposite manner as --update. To use this patch, run these commands for a successful build: patch -p1 modtime) < 0) { + if (verbose > 1) + rprintf(FINFO, "%s is older\n", fname); + return; + } + fnamecmp = fname; fnamecmp_type = FNAMECMP_FNAME; @@ -1825,6 +1833,7 @@ void check_for_finished_files(int itemiz ignore_existing = -ignore_existing; ignore_non_existing = -ignore_non_existing; update_only = -update_only; + downdate_only = -downdate_only; always_checksum = -always_checksum; size_only = -size_only; append_mode = -append_mode; @@ -1850,6 +1859,7 @@ void check_for_finished_files(int itemiz ignore_existing = -ignore_existing; ignore_non_existing = -ignore_non_existing; update_only = -update_only; + downdate_only = -downdate_only; always_checksum = -always_checksum; size_only = -size_only; append_mode = -append_mode; --- old/options.c +++ new/options.c @@ -57,6 +57,7 @@ int preserve_uid = 0; int preserve_gid = 0; int preserve_times = 0; int update_only = 0; +int downdate_only = 0; int cvs_exclude = 0; int dry_run = 0; int do_xfers = 1; @@ -318,6 +319,7 @@ void usage(enum logcode F) rprintf(F," --backup-dir=DIR make backups into hierarchy based in DIR\n"); rprintf(F," --suffix=SUFFIX set backup suffix (default %s w/o --backup-dir)\n",BACKUP_SUFFIX); rprintf(F," -u, --update skip files that are newer on the receiver\n"); + rprintf(F," -w, --downdate skip files that are older on the receiver\n"); rprintf(F," --inplace update destination files in-place (SEE MAN PAGE)\n"); rprintf(F," --append append data onto shorter files\n"); rprintf(F," --append-verify like --append, but with old data in file checksum\n"); @@ -522,6 +524,7 @@ static struct poptOption long_options[] {"size-only", 0, POPT_ARG_NONE, &size_only, 0, 0, 0 }, {"one-file-system", 'x', POPT_ARG_NONE, 0, 'x', 0, 0 }, {"update", 'u', POPT_ARG_NONE, &update_only, 0, 0, 0 }, + {"downdate", 'w', POPT_ARG_NONE, &downdate_only, 0, 0, 0 }, {"existing", 0, POPT_ARG_NONE, &ignore_non_existing, 0, 0, 0 }, {"ignore-non-existing",0,POPT_ARG_NONE, &ignore_non_existing, 0, 0, 0 }, {"ignore-existing", 0, POPT_ARG_NONE, &ignore_existing, 0, 0, 0 },