summaryrefslogtreecommitdiff
path: root/usr.bin/cvs
diff options
context:
space:
mode:
authorJoris Vink <joris@cvs.openbsd.org>2008-06-09 23:33:16 +0000
committerJoris Vink <joris@cvs.openbsd.org>2008-06-09 23:33:16 +0000
commit12fc9e1c5534a9b647e6974808513f5f34652019 (patch)
treed6ccfe7f0e1e1e133ae6e7fadbc19489c590170b /usr.bin/cvs
parentd9ae52a33fe4008f0c222e7679374d8aba2322e4 (diff)
log already gets it FILE_UNKNOWN warning spewed out from cvs_file_classify,
so do not mention it again in cvs_log_local();
Diffstat (limited to 'usr.bin/cvs')
-rw-r--r--usr.bin/cvs/getlog.c5
1 files changed, 1 insertions, 4 deletions
diff --git a/usr.bin/cvs/getlog.c b/usr.bin/cvs/getlog.c
index fe8957098eb..25916fb69e8 100644
--- a/usr.bin/cvs/getlog.c
+++ b/usr.bin/cvs/getlog.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: getlog.c,v 1.87 2008/03/02 19:05:34 tobias Exp $ */
+/* $OpenBSD: getlog.c,v 1.88 2008/06/09 23:33:15 joris Exp $ */
/*
* Copyright (c) 2005, 2006 Xavier Santolaria <xsa@openbsd.org>
* Copyright (c) 2006 Joris Vink <joris@openbsd.org>
@@ -196,9 +196,6 @@ cvs_log_local(struct cvs_file *cf)
cvs_file_classify(cf, cvs_directory_tag);
if (cf->file_status == FILE_UNKNOWN) {
- if (verbosity > 0 && cvs_cmdop != CVS_OP_RLOG)
- cvs_log(LP_ERR, "nothing known about %s",
- cf->file_path);
return;
} else if (cf->file_status == FILE_ADDED) {
if (verbosity > 0)