summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorjfb <jfb@openbsd.org>2004-07-27 17:15:00 +0000
committerjfb <jfb@openbsd.org>2004-07-27 17:15:00 +0000
commit013cc5c643fc59e5eab90c8bedd656970ce530aa (patch)
tree1b5b5aa98995401f1837228ed134df6013c7fbc5
parentFix directory loading with the new file structure allocation code (diff)
downloadwireguard-openbsd-013cc5c643fc59e5eab90c8bedd656970ce530aa.tar.xz
wireguard-openbsd-013cc5c643fc59e5eab90c8bedd656970ce530aa.zip
the `.#*' pattern actually still matches, include it in standard
ignore patterns
-rw-r--r--usr.bin/cvs/file.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/cvs/file.c b/usr.bin/cvs/file.c
index 6d1e78de560..1750175dbfe 100644
--- a/usr.bin/cvs/file.c
+++ b/usr.bin/cvs/file.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: file.c,v 1.7 2004/07/27 16:56:10 jfb Exp $ */
+/* $OpenBSD: file.c,v 1.8 2004/07/27 17:15:00 jfb Exp $ */
/*
* Copyright (c) 2004 Jean-Francois Brousseau <jfb@openbsd.org>
* All rights reserved.
@@ -74,6 +74,7 @@ static const char *cvs_ign_std[] = {
"*.depend",
"CVS",
"core",
+ ".#*",
#ifdef OLD_SMELLY_CRUFT
"RCSLOG",
"tags",
@@ -81,7 +82,6 @@ static const char *cvs_ign_std[] = {
"RCS",
"SCCS",
"#*",
- ".#*",
",*",
#endif
};