X-Git-Url: https://mattmccutchen.net/rsync/rsync-patches.git/blobdiff_plain/cc3e685d09b2095099fc396157d19172ab3ef7c4..7170ca8dba0a407cd0c91b41b48163c7b682abb1:/downdate.diff diff --git a/downdate.diff b/downdate.diff index 5ef63b1..753ad16 100644 --- a/downdate.diff +++ b/downdate.diff @@ -7,24 +7,25 @@ To use this patch, run these commands for a successful build: ./configure (optional if already run) make +based-on: 181c9faf928faad08ef095f4667afe460ec3bef6 diff --git a/generator.c b/generator.c --- a/generator.c +++ b/generator.c -@@ -54,6 +54,7 @@ extern int ignore_errors; +@@ -56,6 +56,7 @@ extern int ignore_errors; extern int remove_source_files; extern int delay_updates; extern int update_only; +extern int downdate_only; + extern int human_readable; extern int ignore_existing; extern int ignore_non_existing; - extern int inplace; -@@ -1603,6 +1604,13 @@ static void recv_generator(char *fname, struct file_struct *file, int ndx, +@@ -1546,6 +1547,13 @@ static void recv_generator(char *fname, struct file_struct *file, int ndx, goto cleanup; } + if (downdate_only && statret == 0 + && cmp_time(sx.st.st_mtime, file->modtime) < 0) { -+ if (verbose > 1) ++ if (INFO_GTE(SKIP, 1)) + rprintf(FINFO, "%s is older\n", fname); + return; + } @@ -32,26 +33,26 @@ diff --git a/generator.c b/generator.c fnamecmp = fname; fnamecmp_type = FNAMECMP_FNAME; -@@ -1917,6 +1925,7 @@ void check_for_finished_files(int itemizing, enum logcode code, int check_redo) - 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; -@@ -1942,6 +1951,7 @@ void check_for_finished_files(int itemizing, enum logcode code, int check_redo) - 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; +@@ -1908,6 +1916,7 @@ void check_for_finished_files(int itemizing, enum logcode code, int check_redo) + 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; +@@ -1933,6 +1942,7 @@ void check_for_finished_files(int itemizing, enum logcode code, int check_redo) + 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; diff --git a/options.c b/options.c --- a/options.c +++ b/options.c -@@ -58,6 +58,7 @@ int preserve_uid = 0; +@@ -60,6 +60,7 @@ int preserve_uid = 0; int preserve_gid = 0; int preserve_times = 0; int update_only = 0; @@ -59,7 +60,7 @@ diff --git a/options.c b/options.c int cvs_exclude = 0; int dry_run = 0; int do_xfers = 1; -@@ -320,6 +321,7 @@ void usage(enum logcode F) +@@ -670,6 +671,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"); @@ -67,9 +68,9 @@ diff --git a/options.c b/options.c 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"); -@@ -524,6 +526,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 }, +@@ -891,6 +893,7 @@ static struct poptOption long_options[] = { + {"no-one-file-system",'x',POPT_ARG_VAL, &one_file_system, 0, 0, 0 }, + {"no-x", 'x', POPT_ARG_VAL, &one_file_system, 0, 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 },