summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorXavier Santolaria <xsa@cvs.openbsd.org>2005-07-27 17:14:09 +0000
committerXavier Santolaria <xsa@cvs.openbsd.org>2005-07-27 17:14:09 +0000
commit5815645b53b6931d8122a06f24e2f77c0eddc802 (patch)
treed4c36ef77ca6f82a411220296173eebecd4810c6
parent3eb63331561e161f4374ddf77e88a41da8d4b8ef (diff)
more use of LP_NOTICE instead of LP_INFO;
-rw-r--r--usr.bin/cvs/remove.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/usr.bin/cvs/remove.c b/usr.bin/cvs/remove.c
index 642cad20cfb..a51307bcade 100644
--- a/usr.bin/cvs/remove.c
+++ b/usr.bin/cvs/remove.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: remove.c,v 1.29 2005/07/27 16:42:19 xsa Exp $ */
+/* $OpenBSD: remove.c,v 1.30 2005/07/27 17:14:08 xsa Exp $ */
/*
* Copyright (c) 2004 Jean-Francois Brousseau <jfb@openbsd.org>
* Copyright (c) 2004, 2005 Xavier Santolaria <xsa@openbsd.org>
@@ -181,7 +181,7 @@ cvs_remove_local(CVSFILE *cf, void *arg)
return (CVS_EX_FILE);
if (verbosity > 1)
- cvs_log(LP_INFO, "removed `%s'", cf->cf_name);
+ cvs_log(LP_NOTICE, "removed `%s'", cf->cf_name);
return (0);
} else if (cf->cf_cvstat == CVS_FST_REMOVED) {
if (verbosity > 1 )
@@ -191,14 +191,14 @@ cvs_remove_local(CVSFILE *cf, void *arg)
return (0);
} else {
if (verbosity > 1)
- cvs_log(LP_INFO, "scheduling file `%s' for removal",
+ cvs_log(LP_NOTICE, "scheduling file `%s' for removal",
cf->cf_name);
removed++;
}
if (removed != 0) {
if (verbosity > 0)
- cvs_log(LP_INFO, "use '%s commit' to remove %s "
+ cvs_log(LP_NOTICE, "use '%s commit' to remove %s "
"permanently", __progname,
(removed == 1) ? "this file" : "these files");
return (0);