search for: opt_whole_fil

Displaying 5 results from an estimated 5 matches for "opt_whole_fil".

Did you mean: opt_whole_file
2002 May 04
1
A simpler move-files patch
...'t map uid/gid values by user/group name\n"); @@ -290,7 +292,7 @@ OPT_LOG_FORMAT, OPT_PASSWORD_FILE, OPT_SIZE_ONLY, OPT_ADDRESS, OPT_DELETE_AFTER, OPT_EXISTING, OPT_MAX_DELETE, OPT_BACKUP_DIR, OPT_IGNORE_ERRORS, OPT_BWLIMIT, OPT_BLOCKING_IO, - OPT_NO_BLOCKING_IO, OPT_WHOLE_FILE, OPT_NO_WHOLE_FILE, + OPT_NO_BLOCKING_IO, OPT_WHOLE_FILE, OPT_NO_WHOLE_FILE, OPT_MOVE_FILES, OPT_MODIFY_WINDOW, OPT_READ_BATCH, OPT_WRITE_BATCH, OPT_IGNORE_EXISTING}; static struct poptOption long_options[] = { @@ -365,6 +367,7 @@ {"hard-links", 'H', POPT_A...
2002 Sep 10
0
[PATCH] Add --preserve-atime switch to rsync
...n"); rprintf(F," -W, --whole-file copy whole files, no incremental checks\n"); *************** *** 287,293 **** OPT_DELETE_AFTER, OPT_EXISTING, OPT_MAX_DELETE, OPT_BACKUP_DIR, OPT_IGNORE_ERRORS, OPT_BWLIMIT, OPT_BLOCKING_IO, OPT_NO_BLOCKING_IO, OPT_WHOLE_FILE, OPT_NO_WHOLE_FILE, ! OPT_MODIFY_WINDOW, OPT_READ_BATCH, OPT_WRITE_BATCH, OPT_IGNORE_EXISTING}; static struct poptOption long_options[] = { /* longName, shortName, argInfo, argPtr, value, descrip, argDesc */ --- 289,296 ---- OPT_DELETE_AFTER, OPT_EXISTING, OPT_MAX_DELETE, OP...
2003 Jan 14
4
specifying a list of files to transfer
...show this help screen\n"); #ifdef INET6 rprintf(F," -4 prefer IPv4\n"); @@ -287,7 +295,8 @@ OPT_DELETE_AFTER, OPT_EXISTING, OPT_MAX_DELETE, OPT_BACKUP_DIR, OPT_IGNORE_ERRORS, OPT_BWLIMIT, OPT_BLOCKING_IO, OPT_NO_BLOCKING_IO, OPT_WHOLE_FILE, OPT_NO_WHOLE_FILE, - OPT_MODIFY_WINDOW, OPT_READ_BATCH, OPT_WRITE_BATCH, OPT_IGNORE_EXISTING}; + OPT_MODIFY_WINDOW, OPT_READ_BATCH, OPT_WRITE_BATCH, OPT_IGNORE_EXISTING, + OPT_SOURCE_LIST, OPT_NULL, OPT_SEND_DIRS, OPT_NO_IMPLICIT_DIRS}; static struct poptOption long_options[] =...
2002 Nov 11
0
Regular Expression support
...GetOptArg(pc), 0, 1); + break; + + case OPT_RINCLUDE: + add_exclude(poptGetOptArg(pc), 1, 1); + break; + + case OPT_REXCLUDE_FROM: + add_exclude_file(poptGetOptArg(pc), 1, 0, 1); + break; + + case OPT_RINCLUDE_FROM: + add_exclude_file(poptGetOptArg(pc), 1, 1, 1); break; case OPT_WHOLE_FILE: Only in rsync-2.5.5.mod/: options.o Common subdirectories: rsync-2.5.5/packaging and rsync-2.5.5.mod/packaging Only in rsync-2.5.5.mod/: params.o Common subdirectories: rsync-2.5.5/patches and rsync-2.5.5.mod/patches Common subdirectories: rsync-2.5.5/popt and rsync-2.5.5.mod/popt diff -u rsync-2...
2002 Aug 05
5
[patch] read-devices
...copy whole files, no incremental checks\n"); @@ -286,9 +288,9 @@ OPT_LOG_FORMAT, OPT_PASSWORD_FILE, OPT_SIZE_ONLY, OPT_ADDRESS, OPT_DELETE_AFTER, OPT_EXISTING, OPT_MAX_DELETE, OPT_BACKUP_DIR, OPT_IGNORE_ERRORS, OPT_BWLIMIT, OPT_BLOCKING_IO, OPT_NO_BLOCKING_IO, OPT_WHOLE_FILE, OPT_NO_WHOLE_FILE, - OPT_MODIFY_WINDOW, OPT_READ_BATCH, OPT_WRITE_BATCH, OPT_IGNORE_EXISTING}; + OPT_MODIFY_WINDOW, OPT_READ_BATCH, OPT_WRITE_BATCH, OPT_IGNORE_EXISTING, OPT_READ_DEVICES}; static struct poptOption long_options[] = { /* longName, shortName, argInfo, argPtr, value,...