Commit 57469f6c authored by Wayne Davison's avatar Wayne Davison

Items read from a per-directory .cvsignore file should be added to the

local_exclude_list, not the exclude_list.
parent 13c7bcbb
......@@ -942,7 +942,7 @@ static void send_directory(int f, struct file_list *flist, char *dir)
if (cvs_exclude) {
if (strlen(fname) + strlen(".cvsignore") <= MAXPATHLEN - 1) {
strcpy(p, ".cvsignore");
add_exclude_file(&exclude_list,fname,MISSING_OK,ADD_EXCLUDE);
add_exclude_file(&local_exclude_list,fname,MISSING_OK,ADD_EXCLUDE);
} else {
io_error |= IOERR_GENERAL;
rprintf(FINFO,
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment