Displaying 2 results from an estimated 2 matches for "save_make_backups".
2005 Apr 06
2
backup option
Hi,
I have question about the behavior of --backup-dir with
--delete-after option.
In my testing with version 2.6.4, it appears that the backup
option only backups altered files. Files that will be deleted on the
destination system will NOT be placed in --backup-dir location. I would
like to back up deleted files. Is there a way to do this?
Thanks
2005 Mar 21
4
Patch: Offline transfer mode
...ync-2.6.3/sender.c 2005-03-19 12:26:03.%N -0800
@@ -29,6 +29,9 @@
extern int protocol_version;
extern int make_backups;
extern struct stats stats;
+extern int write_batch;
+extern int offline;
+extern int write_batch_monitor_out;
/**
@@ -123,16 +126,27 @@
struct stats initial_stats;
int save_make_backups = make_backups;
int j;
+ int f_alt, old_monitor;
if (verbose > 2)
rprintf(FINFO, "send_files starting\n");
+ old_monitor = write_batch_monitor_out;
+ if (write_batch && offline) {
+ /* offline send: don't send tokens over wire */
+ f_alt = open("/dev/null&...