summaryrefslogtreecommitdiff
path: root/usr.bin
diff options
context:
space:
mode:
authorXavier Santolaria <xsa@cvs.openbsd.org>2005-07-27 16:42:20 +0000
committerXavier Santolaria <xsa@cvs.openbsd.org>2005-07-27 16:42:20 +0000
commit3eb63331561e161f4374ddf77e88a41da8d4b8ef (patch)
treeb369f0df0d0415dd3e84c17e3ce6e43a43a6542d /usr.bin
parentd993e4cf33aec0f34f47f6205375085a6fb97a7e (diff)
use LP_NOTICE instead of LP_INFO where appropriate;
Diffstat (limited to 'usr.bin')
-rw-r--r--usr.bin/cvs/admin.c4
-rw-r--r--usr.bin/cvs/commit.c4
-rw-r--r--usr.bin/cvs/diff.c4
-rw-r--r--usr.bin/cvs/getlog.c4
-rw-r--r--usr.bin/cvs/remove.c4
-rw-r--r--usr.bin/cvs/status.c4
-rw-r--r--usr.bin/cvs/tag.c4
-rw-r--r--usr.bin/cvs/update.c4
8 files changed, 16 insertions, 16 deletions
diff --git a/usr.bin/cvs/admin.c b/usr.bin/cvs/admin.c
index 842f8d15464..1bfc19974f5 100644
--- a/usr.bin/cvs/admin.c
+++ b/usr.bin/cvs/admin.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: admin.c,v 1.22 2005/07/25 12:05:43 xsa Exp $ */
+/* $OpenBSD: admin.c,v 1.23 2005/07/27 16:42:19 xsa Exp $ */
/*
* Copyright (c) 2004 Jean-Francois Brousseau <jfb@openbsd.org>
* Copyright (c) 2005 Joris Vink <joris@openbsd.org>
@@ -362,7 +362,7 @@ cvs_admin_local(CVSFILE *cf, void *arg)
if (cf->cf_type == DT_DIR) {
if (verbosity > 1)
- cvs_log(LP_INFO, "Administrating %s", cf->cf_name);
+ cvs_log(LP_NOTICE, "Administrating %s", cf->cf_name);
return (0);
}
diff --git a/usr.bin/cvs/commit.c b/usr.bin/cvs/commit.c
index e2ac9720dcd..f09ebb0e092 100644
--- a/usr.bin/cvs/commit.c
+++ b/usr.bin/cvs/commit.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: commit.c,v 1.45 2005/07/25 12:05:43 xsa Exp $ */
+/* $OpenBSD: commit.c,v 1.46 2005/07/27 16:42:19 xsa Exp $ */
/*
* Copyright (c) 2004 Jean-Francois Brousseau <jfb@openbsd.org>
* All rights reserved.
@@ -291,7 +291,7 @@ cvs_commit_local(CVSFILE *cf, void *arg)
if (cf->cf_type == DT_DIR) {
if (verbosity > 1)
- cvs_log(LP_INFO, "Examining %s", cf->cf_name);
+ cvs_log(LP_NOTICE, "Examining %s", cf->cf_name);
return (0);
}
diff --git a/usr.bin/cvs/diff.c b/usr.bin/cvs/diff.c
index 7e64e156e14..19750dc62e5 100644
--- a/usr.bin/cvs/diff.c
+++ b/usr.bin/cvs/diff.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: diff.c,v 1.53 2005/07/25 12:05:43 xsa Exp $ */
+/* $OpenBSD: diff.c,v 1.54 2005/07/27 16:42:19 xsa Exp $ */
/*
* Copyright (C) Caldera International Inc. 2001-2002.
* All rights reserved.
@@ -596,7 +596,7 @@ cvs_diff_local(CVSFILE *cf, void *arg)
if (cf->cf_type == DT_DIR) {
if (verbosity > 1)
- cvs_log(LP_INFO, "Diffing %s", fpath);
+ cvs_log(LP_NOTICE, "Diffing %s", fpath);
return (0);
}
diff --git a/usr.bin/cvs/getlog.c b/usr.bin/cvs/getlog.c
index a4af478a8ce..c984a09209f 100644
--- a/usr.bin/cvs/getlog.c
+++ b/usr.bin/cvs/getlog.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: getlog.c,v 1.43 2005/07/25 12:05:43 xsa Exp $ */
+/* $OpenBSD: getlog.c,v 1.44 2005/07/27 16:42:19 xsa Exp $ */
/*
* Copyright (c) 2004 Jean-Francois Brousseau <jfb@openbsd.org>
* All rights reserved.
@@ -225,7 +225,7 @@ cvs_getlog_local(CVSFILE *cf, void *arg)
if (cf->cf_type == DT_DIR) {
if (verbosity > 1)
- cvs_log(LP_INFO, "Logging %s", cf->cf_name);
+ cvs_log(LP_NOTICE, "Logging %s", cf->cf_name);
return (0);
}
diff --git a/usr.bin/cvs/remove.c b/usr.bin/cvs/remove.c
index fd3afbdf432..642cad20cfb 100644
--- a/usr.bin/cvs/remove.c
+++ b/usr.bin/cvs/remove.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: remove.c,v 1.28 2005/07/26 14:58:58 xsa Exp $ */
+/* $OpenBSD: remove.c,v 1.29 2005/07/27 16:42:19 xsa Exp $ */
/*
* Copyright (c) 2004 Jean-Francois Brousseau <jfb@openbsd.org>
* Copyright (c) 2004, 2005 Xavier Santolaria <xsa@openbsd.org>
@@ -148,7 +148,7 @@ cvs_remove_local(CVSFILE *cf, void *arg)
if (cf->cf_type == DT_DIR) {
if (verbosity > 1)
- cvs_log(LP_INFO, "Removing %s", cf->cf_name);
+ cvs_log(LP_NOTICE, "Removing %s", cf->cf_name);
return (0);
}
diff --git a/usr.bin/cvs/status.c b/usr.bin/cvs/status.c
index c5cd1d4d3f6..3c1f1938e3a 100644
--- a/usr.bin/cvs/status.c
+++ b/usr.bin/cvs/status.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: status.c,v 1.42 2005/07/22 16:27:29 joris Exp $ */
+/* $OpenBSD: status.c,v 1.43 2005/07/27 16:42:19 xsa Exp $ */
/*
* Copyright (c) 2004 Jean-Francois Brousseau <jfb@openbsd.org>
* Copyright (c) 2005 Xavier Santolaria <xsa@openbsd.org>
@@ -186,7 +186,7 @@ cvs_status_local(CVSFILE *cf, void *arg)
if (cf->cf_type == DT_DIR) {
if (verbosity > 1)
- cvs_log(LP_INFO, "Examining %s", cf->cf_name);
+ cvs_log(LP_NOTICE, "Examining %s", cf->cf_name);
return (0);
}
diff --git a/usr.bin/cvs/tag.c b/usr.bin/cvs/tag.c
index 721e833a341..a707274f22b 100644
--- a/usr.bin/cvs/tag.c
+++ b/usr.bin/cvs/tag.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: tag.c,v 1.28 2005/07/25 12:13:08 xsa Exp $ */
+/* $OpenBSD: tag.c,v 1.29 2005/07/27 16:42:19 xsa Exp $ */
/*
* Copyright (c) 2004 Jean-Francois Brousseau <jfb@openbsd.org>
* Copyright (c) 2004 Joris Vink <joris@openbsd.org>
@@ -252,7 +252,7 @@ cvs_tag_local(CVSFILE *cf, void *arg)
if (cf->cf_type == DT_DIR) {
if (verbosity > 1)
- cvs_log(LP_INFO, "%s %s",
+ cvs_log(LP_NOTICE, "%s %s",
tag_delete ? "Untagging" : "Tagging", fpath);
return (CVS_EX_OK);
}
diff --git a/usr.bin/cvs/update.c b/usr.bin/cvs/update.c
index bdcd6621fa7..cf8ef85b6a3 100644
--- a/usr.bin/cvs/update.c
+++ b/usr.bin/cvs/update.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: update.c,v 1.42 2005/07/25 12:13:08 xsa Exp $ */
+/* $OpenBSD: update.c,v 1.43 2005/07/27 16:42:19 xsa Exp $ */
/*
* Copyright (c) 2004 Jean-Francois Brousseau <jfb@openbsd.org>
* All rights reserved.
@@ -236,7 +236,7 @@ cvs_update_local(CVSFILE *cf, void *arg)
}
if (cf->cf_type == DT_DIR) {
- cvs_log(LP_INFO, "Updating %s", fpath);
+ cvs_log(LP_NOTICE, "Updating %s", fpath);
return (CVS_EX_OK);
}