diff options
author | Tobias Stoeckmann <tobias@cvs.openbsd.org> | 2008-01-10 09:57:52 +0000 |
---|---|---|
committer | Tobias Stoeckmann <tobias@cvs.openbsd.org> | 2008-01-10 09:57:52 +0000 |
commit | 23a01a31af55a652cfe0ef1d7981cec1eda80a6d (patch) | |
tree | 3ece18f2bef208fd1269e4b62eaaedd62f96cafb /usr.bin/cvs/repository.c | |
parent | 180e0a0701bb42a3d328e0be4bbd20f378de1478 (diff) |
Don't ignore files and directories due to patterns on repository-side,
these patterns should only be applied on working directories.
This finally enables a fully working "cvs checkout src" (but don't expect
all checkout options to work, too).
Diffstat (limited to 'usr.bin/cvs/repository.c')
-rw-r--r-- | usr.bin/cvs/repository.c | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/usr.bin/cvs/repository.c b/usr.bin/cvs/repository.c index c6934cc11f1..ec9f698cc02 100644 --- a/usr.bin/cvs/repository.c +++ b/usr.bin/cvs/repository.c @@ -1,4 +1,4 @@ -/* $OpenBSD: repository.c,v 1.15 2007/09/22 16:01:22 joris Exp $ */ +/* $OpenBSD: repository.c,v 1.16 2008/01/10 09:57:51 tobias Exp $ */ /* * Copyright (c) 2006 Joris Vink <joris@openbsd.org> * @@ -104,9 +104,6 @@ cvs_repository_getdir(const char *dir, const char *wdir, !strcmp(dp->d_name, CVS_LOCK)) continue; - if (cvs_file_chkign(dp->d_name)) - continue; - (void)xsnprintf(fpath, MAXPATHLEN, "%s/%s", wdir, dp->d_name); (void)xsnprintf(rpath, MAXPATHLEN, "%s/%s", dir, dp->d_name); |