Displaying 3 results from an estimated 3 matches for "flag_delet".
Did you mean:
flag_delete
2004 Jan 17
1
--delete-sent-files (AKA --move-files)
...;
Tells --delete to go ahead and delete files
Index: rsync.h
--- rsync.h 15 Jan 2004 07:42:27 -0000 1.173
+++ rsync.h 17 Jan 2004 05:04:56 -0000
@@ -39,6 +39,7 @@
incompatible with older versions :-( */
#define CHAR_OFFSET 0
+/* These flags are used during the flist transfer. */
#define FLAG_DELETE (1<<0)
#define SAME_MODE (1<<1)
@@ -54,9 +55,14 @@
#define HAS_INODE_DATA (1<<9)
#define SAME_DEV (1<<10)
-/* What flags are relevant after the transfer of the flist is complete? */
+/* What flags above are relevant after the transfer of the flist? */
#define LIVE_FLA...
2004 Jan 25
2
scan for first existing hard-link file
...file, i, -1);
- }
-
if (verbose > 2)
rprintf(FINFO,"recv_files finished\n");
--- rsync.h 22 Jan 2004 18:37:26 -0000 1.174
+++ rsync.h 25 Jan 2004 09:09:07 -0000
@@ -58,6 +58,11 @@
/* What flags above are relevant after the transfer of the flist? */
#define LIVE_FLAGS FLAG_DELETE
+/* These flist flags can be set after the flist is transferred. */
+
+/*#define FLAG_DELETE (1<<0) -- from the above list */
+#define FLAG_HLINK_LAST (1<<1)
+
/* update this if you make incompatible changes */
#define PROTOCOL_VERSION 28
@@ -384,7 +389,7 @@ enum msgcode {
#defi...
2001 Aug 06
1
merge rsync+ into rsync (was Re: rsync-2.4.7 NEWS file)
> Just curious: what about the rsync+ patch?
Thanks for the reminder.
I've just committed Jos's rsync+ patch onto the
"branch_mbp_rsyncplus_merge" branch. If it works OK and nobody
screams I will move it across onto the main tree tomorrow or
Wednesday.
I see the patch doesn't add documentation about the new options to the
man page, so we should fix that in the future.