search for: xmit_hlink_first

Displaying 2 results from an estimated 2 matches for "xmit_hlink_first".

2011 Aug 27
4
[Bug 8411] New: invalid flist flag when using protocol 28 or 29
https://bugzilla.samba.org/show_bug.cgi?id=8411 Summary: invalid flist flag when using protocol 28 or 29 Product: rsync Version: 3.0.7 Platform: All OS/Version: All Status: NEW Severity: normal Priority: P5 Component: core AssignedTo: wayned at samba.org ReportedBy: unobe at cpan.org
2008 Feb 15
4
Revised flags patch
...e9-flags/rsync.h --- rsync-3.0.0pre9/rsync.h Mon Feb 4 16:29:22 2008 +++ rsync-3.0.0pre9-flags/rsync.h Fri Feb 15 20:29:08 2008 @@ -60,6 +60,7 @@ #define XMIT_RDEV_MINOR_8_pre30 (1<<11) /* protocols 28 - 29 */ #define XMIT_GROUP_NAME_FOLLOWS (1<<11) /* protocols 30 - now */ #define XMIT_HLINK_FIRST (1<<12) /* protocols 30 - now (HLINKED files only) */ +#define XMIT_SAME_FLAGS (1<<14) /* protocols ?? - now */ /* These flags are used in the live flist data. */ @@ -451,6 +452,10 @@ typedef unsigned int size_t; #endif #endif +#ifdef HAVE_CHFLAGS +#define SUPPORT_FLAGS 1 +#en...