summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorjoris <joris@openbsd.org>2007-01-29 15:47:39 +0000
committerjoris <joris@openbsd.org>2007-01-29 15:47:39 +0000
commit7e56203da25a11c7a750fbe5552b43c17d5bcffe (patch)
tree2215ef0431e787aca97a134f31e09ff051b03f2b
parentAdd SSL support to hoststated. (diff)
downloadwireguard-openbsd-7e56203da25a11c7a750fbe5552b43c17d5bcffe.tar.xz
wireguard-openbsd-7e56203da25a11c7a750fbe5552b43c17d5bcffe.zip
no longer spit out that you can add new files using 'cvs add',
it is pretty obvious on itself. ok niallo@ xsa@
-rw-r--r--usr.bin/cvs/file.c9
1 files changed, 1 insertions, 8 deletions
diff --git a/usr.bin/cvs/file.c b/usr.bin/cvs/file.c
index 93302feac7d..0ae621be3d4 100644
--- a/usr.bin/cvs/file.c
+++ b/usr.bin/cvs/file.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: file.c,v 1.181 2007/01/28 03:03:35 joris Exp $ */
+/* $OpenBSD: file.c,v 1.182 2007/01/29 15:47:39 joris Exp $ */
/*
* Copyright (c) 2006 Joris Vink <joris@openbsd.org>
* Copyright (c) 2004 Jean-Francois Brousseau <jfb@openbsd.org>
@@ -717,10 +717,6 @@ cvs_file_classify(struct cvs_file *cf, const char *tag, int loud)
cvs_log(LP_NOTICE,
"nothing known about '%s'",
cf->file_path);
- } else if (cvs_cmdop != CVS_OP_ADD) {
- cvs_log(LP_NOTICE,
- "use add to create an entry for %s",
- cf->file_path);
}
cf->file_status = FILE_UNKNOWN;
@@ -728,9 +724,6 @@ cvs_file_classify(struct cvs_file *cf, const char *tag, int loud)
if (cf->fd == -1) {
cf->file_status = FILE_UPTODATE;
} else if (cvs_cmdop != CVS_OP_ADD) {
- cvs_log(LP_NOTICE,
- "use add to create an entry for %s",
- cf->file_path);
cf->file_status = FILE_UNKNOWN;
}
} else {