search for: no_exclud

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

Did you mean: no_excludes
2004 Jan 19
1
File that "vanish"es between readdir and stat is not IO error
Using rsync 2.6.0 with --verbose and doing a pull. >?receiving file list ... readlink "{FILENAME}" failed: >?No such file or directory >?done >?IO error encountered - skipping file deletion The file was a temporary file that was being deleted just as the rsync was run. So while the file list was being built, it was there when the directory was read but had vanished by the
2004 Aug 20
3
Using --keep-dirlinks : recursive symlinks problem
Hello folks, trying to make use of the new --keep-dirlinks feature for a synch port; it works excellent but feels incomplete without a way for rsync to ignore recursive links. Example: # ls -la . total 6 drwxrwxr-x 2 bldmstr staff 512 Aug 16 21:42 . drwxrwxr-x 8 bldmstr staff 512 Aug 16 21:41 .. lrwxrwxrwx 1 bldmstr staff 2 Aug 20 12:07 bogus -> .. if you use
2004 Apr 15
0
Multiple compare-dest args
...u rsync-2.6.1pre-1/rsync.h rsync-2.6.1pre-1-vidar/rsync.h --- rsync-2.6.1pre-1/rsync.h 2004-03-06 08:43:55.000000000 +0100 +++ rsync-2.6.1pre-1-vidar/rsync.h 2004-04-15 11:42:33.000000000 +0200 @@ -97,6 +97,8 @@ #define MAX_ARGS 1000 +#define MAX_COMP_DEST 20 + #define MPLEX_BASE 7 #define NO_EXCLUDES 0 Only in rsync-2.6.1pre-1-vidar: rsync.h~ Only in rsync-2.6.1pre-1-vidar/zlib: dummy
2004 Feb 06
4
memory reduction
...e) backup_dir[--backup_dir_len] = '\0'; if (verbose > 0) rprintf(FINFO, "backup_dir is %s\n", backup_dir); + initialised = 1; } @@ -199,7 +200,7 @@ static int keep_backup(char *fname) if (do_stat(fname, &st)) return 1; #endif - file = make_file(fname, NO_EXCLUDES); + file = make_file(fname, NULL, NO_EXCLUDES); /* the file could have disappeared */ if (!file) return 1; @@ -282,7 +283,7 @@ static int keep_backup(char *fname) } } set_perms(keep_name, file, NULL, 0); - free_file(file, FREE_STRUCT); + free(file); if (verbose > 1) rprintf...
2004 Apr 09
3
include/exclude bug in rsync 2.6.0/2.6.1pre1
..._exclude_list; +static struct exclude_struct **recur_local_exclude_list; int io_error; @@ -210,6 +212,7 @@ */ static int check_exclude_file(char *fname, int is_dir, int exclude_level) { + int rc; #if 0 /* This currently never happens, so avoid a useless compare. */ if (exclude_level == NO_EXCLUDES) return 0; @@ -225,16 +228,24 @@ return 0; } } - if (server_exclude_list - && check_exclude(server_exclude_list, fname, is_dir)) - return 1; + /* Precedence: use the most local and most recent matching pattern, + in this order: server, --rsync-exclude, --cvs-exclude, --e...