From 57469f6c31cec390c014cde5851ec8b279d2c287 Mon Sep 17 00:00:00 2001 From: Wayne Davison Date: Sat, 17 Jan 2004 01:16:49 +0000 Subject: [PATCH] Items read from a per-directory .cvsignore file should be added to the local_exclude_list, not the exclude_list. --- flist.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/flist.c b/flist.c index 55107a71..d8115b66 100644 --- a/flist.c +++ b/flist.c @@ -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, -- 2.34.1