search for: dest_filter

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

Did you mean: test_filter
2007 Sep 26
1
DO NOT REPLY [Bug 4995] New: source_filter dest_filter patch fails in 2.6.9
https://bugzilla.samba.org/show_bug.cgi?id=4995 Summary: source_filter dest_filter patch fails in 2.6.9 Product: rsync Version: 2.6.9 Platform: All OS/Version: Linux Status: NEW Severity: normal Priority: P3 Component: core AssignedTo: wayned@samba.org ReportedBy: nick@nickblundell.or...
2003 Nov 17
0
[PATCH] --source-filter && --dest-filter for rsync 2.5.6
...r rsync-2.5.6/options.c rsync-2.5.6-filtered/options.c --- rsync-2.5.6/options.c 2003-01-28 04:11:57.000000000 +0100 +++ rsync-2.5.6-filtered/options.c 2003-11-16 14:06:29.000000000 +0100 @@ -48,6 +48,9 @@ int dry_run=0; int local_server=0; int ignore_times=0; +char *source_filter = NULL; +char *dest_filter = NULL; +int times_only=0; int delete_mode=0; int delete_excluded=0; int one_file_system=0; @@ -246,6 +249,7 @@ rprintf(F," --timeout=TIME set IO timeout in seconds\n"); rprintf(F," -I, --ignore-times don't exclude files that match length and time\n...