diff options
author | Joris Vink <joris@cvs.openbsd.org> | 2007-01-12 03:34:51 +0000 |
---|---|---|
committer | Joris Vink <joris@cvs.openbsd.org> | 2007-01-12 03:34:51 +0000 |
commit | d7931b463e96e9fad2768fbbf33e493826bf2d53 (patch) | |
tree | 91c6768d829e7bae29f7fea9ebb6cd191170f972 /usr.bin/cvs | |
parent | 0aa451e8ce45db8ae998b365e71ad54ff6b5b218 (diff) |
fix incorrect output which was driving me more then crazy
Diffstat (limited to 'usr.bin/cvs')
-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"); } } |