X-Git-Url: https://mattmccutchen.net/rsync/rsync.git/blobdiff_plain/122f19a615bdcb84af139ca27ea8735a0908c9d0..a8b9d4edec745757d34a10be0f6956c0609c2284:/exclude.c diff --git a/exclude.c b/exclude.c index 15dc3109..66aeb671 100644 --- a/exclude.c +++ b/exclude.c @@ -60,7 +60,10 @@ int send_included_file_names(int f,struct file_list *flist) /* skip the allowed beginning slashes */ p++; } - send_file_name(f,flist,p,0,0); + /* silently skip files that don't exist to + be more like non-optimized case */ + if (access(p,0) == 0) + send_file_name(f,flist,p,0,0); } exclude_list = ex_list; @@ -97,6 +100,7 @@ static struct exclude_struct *make_exclude(char *pattern, int include) only_included_files = 0; } ret->regular_exp = 1; + ret->fnmatch_flags = strstr(pattern, "**") ? 0 : FNM_PATHNAME; } else if (!ret->include) { only_included_files = 0; } @@ -140,7 +144,7 @@ static int check_one_exclude(char *name,struct exclude_struct *ex, } if (ex->regular_exp) { - if (fnmatch(pattern, name, 0) == 0) + if (fnmatch(pattern, name, ex->fnmatch_flags) == 0) return 1; } else { int l1 = strlen(name);