diff options
Diffstat (limited to 'usr.bin/cvs/getlog.c')
-rw-r--r-- | usr.bin/cvs/getlog.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/usr.bin/cvs/getlog.c b/usr.bin/cvs/getlog.c index a940b583703..a6bb25f55cc 100644 --- a/usr.bin/cvs/getlog.c +++ b/usr.bin/cvs/getlog.c @@ -1,4 +1,4 @@ -/* $OpenBSD: getlog.c,v 1.36 2005/07/11 08:36:58 xsa Exp $ */ +/* $OpenBSD: getlog.c,v 1.37 2005/07/11 08:44:16 xsa Exp $ */ /* * Copyright (c) 2004 Jean-Francois Brousseau <jfb@openbsd.org> * All rights reserved. @@ -213,7 +213,8 @@ cvs_getlog_local(CVSFILE *cf, void *arg) struct cvsroot *root; if (cf->cf_cvstat == CVS_FST_UNKNOWN) { - cvs_log(LP_WARN, "nothing known about %s", cf->cf_name); + if (verbosity > 0) + cvs_log(LP_WARN, "nothing known about %s", cf->cf_name); return (0); } |