X-Git-Url: https://mattmccutchen.net/rsync/rsync-patches.git/blobdiff_plain/7170ca8dba0a407cd0c91b41b48163c7b682abb1..041359b073df4fe698ec80f2e0699a2585b2337b:/filter-attribute-mods.diff diff --git a/filter-attribute-mods.diff b/filter-attribute-mods.diff index ffd2aeb..47a968f 100644 --- a/filter-attribute-mods.diff +++ b/filter-attribute-mods.diff @@ -9,7 +9,7 @@ To use this patch, run these commands for a successful build: ./configure (optional if already run) make -based-on: 181c9faf928faad08ef095f4667afe460ec3bef6 +based-on: 3b8f8192227b14e708bf535072485e50f4362270 diff --git a/exclude.c b/exclude.c --- a/exclude.c +++ b/exclude.c @@ -246,7 +246,7 @@ diff --git a/flist.c b/flist.c #ifdef ICONV_OPTION extern int filesfrom_convert; -@@ -274,7 +275,8 @@ static inline int path_is_daemon_excluded(char *path, int ignore_filename) +@@ -283,7 +284,8 @@ static inline int path_is_daemon_excluded(char *path, int ignore_filename) /* This function is used to check if a file should be included/excluded * from the list of files based on its name and type etc. The value of @@ -256,7 +256,7 @@ diff --git a/flist.c b/flist.c static int is_excluded(const char *fname, int is_dir, int filter_level) { #if 0 /* This currently never happens, so avoid a useless compare. */ -@@ -283,6 +285,8 @@ static int is_excluded(const char *fname, int is_dir, int filter_level) +@@ -292,6 +294,8 @@ static int is_excluded(const char *fname, int is_dir, int filter_level) #endif if (is_daemon_excluded(fname, is_dir)) return 1; @@ -265,7 +265,7 @@ diff --git a/flist.c b/flist.c if (filter_level != ALL_FILTERS) return 0; if (filter_list.head -@@ -1142,7 +1146,7 @@ struct file_struct *make_file(const char *fname, struct file_list *flist, +@@ -1170,7 +1174,7 @@ struct file_struct *make_file(const char *fname, struct file_list *flist, } else if (readlink_stat(thisname, &st, linkname) != 0) { int save_errno = errno; /* See if file is excluded before reporting an error. */ @@ -274,7 +274,7 @@ diff --git a/flist.c b/flist.c && (is_excluded(thisname, 0, filter_level) || is_excluded(thisname, 1, filter_level))) { if (ignore_perishable && save_errno != ENOENT) -@@ -1187,6 +1191,12 @@ struct file_struct *make_file(const char *fname, struct file_list *flist, +@@ -1215,6 +1219,12 @@ struct file_struct *make_file(const char *fname, struct file_list *flist, if (filter_level == NO_FILTERS) goto skip_filters; @@ -287,7 +287,7 @@ diff --git a/flist.c b/flist.c if (S_ISDIR(st.st_mode)) { if (!xfer_dirs) { -@@ -1377,12 +1387,23 @@ static struct file_struct *send_file_name(int f, struct file_list *flist, +@@ -1415,12 +1425,23 @@ static struct file_struct *send_file_name(int f, struct file_list *flist, int flags, int filter_level) { struct file_struct *file; @@ -312,7 +312,7 @@ diff --git a/flist.c b/flist.c file->mode = tweak_mode(file->mode, chmod_modes); if (f >= 0) { -@@ -2239,7 +2260,7 @@ struct file_list *send_file_list(int f, int argc, char *argv[]) +@@ -2280,7 +2301,7 @@ struct file_list *send_file_list(int f, int argc, char *argv[]) struct file_struct *file; file = send_file_name(f, flist, fbuf, &st, FLAG_TOP_DIR | FLAG_CONTENT_DIR | flags, @@ -321,7 +321,7 @@ diff --git a/flist.c b/flist.c if (!file) continue; if (inc_recurse) { -@@ -2253,7 +2274,7 @@ struct file_list *send_file_list(int f, int argc, char *argv[]) +@@ -2294,7 +2315,7 @@ struct file_list *send_file_list(int f, int argc, char *argv[]) } else send_if_directory(f, flist, file, fbuf, len, flags); } else @@ -333,7 +333,7 @@ diff --git a/flist.c b/flist.c diff --git a/rsync.h b/rsync.h --- a/rsync.h +++ b/rsync.h -@@ -146,6 +146,9 @@ +@@ -149,6 +149,9 @@ #define NO_FILTERS 0 #define SERVER_FILTERS 1 #define ALL_FILTERS 2 @@ -343,7 +343,7 @@ diff --git a/rsync.h b/rsync.h #define XFLG_FATAL_ERRORS (1<<0) #define XFLG_OLD_PREFIXES (1<<1) -@@ -798,6 +801,8 @@ struct map_struct { +@@ -805,6 +808,8 @@ struct map_struct { int status; /* first errno from read errors */ }; @@ -352,7 +352,7 @@ diff --git a/rsync.h b/rsync.h #define FILTRULE_WILD (1<<0) /* pattern has '*', '[', and/or '?' */ #define FILTRULE_WILD2 (1<<1) /* pattern has '**' */ #define FILTRULE_WILD2_PREFIX (1<<2) /* pattern starts with "**" */ -@@ -818,8 +823,18 @@ struct map_struct { +@@ -825,8 +830,18 @@ struct map_struct { #define FILTRULE_RECEIVER_SIDE (1<<17)/* rule applies to the receiving side */ #define FILTRULE_CLEAR_LIST (1<<18)/* this item is the "!" token */ #define FILTRULE_PERISHABLE (1<<19)/* perishable if parent dir goes away */ @@ -371,7 +371,7 @@ diff --git a/rsync.h b/rsync.h typedef struct filter_struct { struct filter_struct *next; -@@ -829,6 +844,11 @@ typedef struct filter_struct { +@@ -836,6 +851,11 @@ typedef struct filter_struct { int slash_cnt; struct filter_list_struct *mergelist; } u; @@ -395,7 +395,7 @@ diff --git a/rsync.yo b/rsync.yo See the bf(--perms) and bf(--executability) options for how the resulting permission value can be applied to the files in the transfer. -@@ -1808,6 +1810,10 @@ be omitted, but if USER is empty, a leading colon must be supplied. +@@ -1831,6 +1833,10 @@ be omitted, but if USER is empty, a leading colon must be supplied. If you specify "--chown=foo:bar, this is exactly the same as specifying "--usermap=*:foo --groupmap=*:bar", only easier. @@ -406,7 +406,7 @@ diff --git a/rsync.yo b/rsync.yo dit(bf(--timeout=TIMEOUT)) This option allows you to set a maximum I/O timeout in seconds. If no data is transferred for the specified time then rsync will exit. The default is 0, which means no timeout. -@@ -2620,6 +2626,15 @@ itemization( +@@ -2643,6 +2649,15 @@ itemization( option's default rules that exclude things like "CVS" and "*.o" are marked as perishable, and will not prevent a directory that was removed on the source from being deleted on the destination. @@ -422,7 +422,7 @@ diff --git a/rsync.yo b/rsync.yo ) manpagesection(MERGE-FILE FILTER RULES) -@@ -2681,6 +2696,12 @@ itemization( +@@ -2704,6 +2719,12 @@ itemization( a rule prefix such as bf(hide)). ) @@ -438,7 +438,7 @@ diff --git a/rsync.yo b/rsync.yo diff --git a/util.c b/util.c --- a/util.c +++ b/util.c -@@ -840,6 +840,25 @@ size_t stringjoin(char *dest, size_t destsize, ...) +@@ -816,6 +816,25 @@ size_t stringjoin(char *dest, size_t destsize, ...) return ret; }