X-Git-Url: https://mattmccutchen.net/rsync/rsync.git/blobdiff_plain/5d5811f7d9e64265130951007b14a6d88a2425b6..fd0abefa433e80dcc4f730f30bc5e4d918a3c10b:/exclude.c diff --git a/exclude.c b/exclude.c index 35fa307a..15fa4f60 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; @@ -234,7 +237,12 @@ struct exclude_struct **make_exclude_list(char *fname, int l = strlen(line); if (l && line[l-1] == '\n') l--; line[l] = 0; - if (line[0]) add_exclude_list(line,&list,include); + if (line[0] && (line[0] != ';') && (line[0] != '#')) { + /* Skip lines starting with semicolon or pound. + It probably wouldn't cause any harm to not skip + them but there's no need to save them. */ + add_exclude_list(line,&list,include); + } } fclose(f); return list;