diff options
author | 2004-07-27 17:15:00 +0000 | |
---|---|---|
committer | 2004-07-27 17:15:00 +0000 | |
commit | 013cc5c643fc59e5eab90c8bedd656970ce530aa (patch) | |
tree | 1b5b5aa98995401f1837228ed134df6013c7fbc5 | |
parent | Fix directory loading with the new file structure allocation code (diff) | |
download | wireguard-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.c | 4 |
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 }; |