diff options
author | 2007-01-12 03:34:50 +0000 | |
---|---|---|
committer | 2007-01-12 03:34:50 +0000 | |
commit | 0e11e8a7f6d4b561c203429e4106d7527926b6ef (patch) | |
tree | 1530c61a8fac87cd01d633cc0ab310f6d6098df8 | |
parent | Add acpicpu(4) here too so it gets built and installed. (diff) | |
download | wireguard-openbsd-0e11e8a7f6d4b561c203429e4106d7527926b6ef.tar.xz wireguard-openbsd-0e11e8a7f6d4b561c203429e4106d7527926b6ef.zip |
fix incorrect output which was driving me more then crazy
-rw-r--r-- | usr.bin/cvs/add.c | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/usr.bin/cvs/add.c b/usr.bin/cvs/add.c index 97983ac15b4..e4e8134dbb4 100644 --- a/usr.bin/cvs/add.c +++ b/usr.bin/cvs/add.c @@ -1,4 +1,4 @@ -/* $OpenBSD: add.c,v 1.66 2007/01/11 02:35:55 joris Exp $ */ +/* $OpenBSD: add.c,v 1.67 2007/01/12 03:34:50 joris Exp $ */ /* * Copyright (c) 2006 Joris Vink <joris@openbsd.org> * Copyright (c) 2005, 2006 Xavier Santolaria <xsa@openbsd.org> @@ -317,10 +317,9 @@ add_file(struct cvs_file *cf) add_entry(cf); if (added != 0) { - if (verbosity > 1) - cvs_log(LP_NOTICE, "use '%s commit' to add %s " - "permanently", __progname, - (added == 1) ? "this file" : "these files"); + cvs_log(LP_NOTICE, "use '%s commit' to add %s " + "permanently", __progname, + (added == 1) ? "this file" : "these files"); } } |