summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoris Vink <joris@cvs.openbsd.org>2009-03-23 07:40:31 +0000
committerJoris Vink <joris@cvs.openbsd.org>2009-03-23 07:40:31 +0000
commit4853f6efd95245776a576b737e78d54730a83374 (patch)
tree1884f9bc237c3bb257999e469b7c582804c7d5fb
parentf9bc3b10db275679d66aa30b347d5ec584f3d694 (diff)
LP_NOTICE should be LP_ERR when showing directory messages.
-rw-r--r--usr.bin/cvs/update.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/cvs/update.c b/usr.bin/cvs/update.c
index 684e478cf3c..24cd9a7fabb 100644
--- a/usr.bin/cvs/update.c
+++ b/usr.bin/cvs/update.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: update.c,v 1.158 2009/03/21 11:16:28 joris Exp $ */
+/* $OpenBSD: update.c,v 1.159 2009/03/23 07:40:30 joris Exp $ */
/*
* Copyright (c) 2006 Joris Vink <joris@openbsd.org>
*
@@ -328,7 +328,7 @@ cvs_update_local(struct cvs_file *cf)
if (cf->file_status != FILE_UNKNOWN &&
verbosity > 1)
- cvs_log(LP_NOTICE, "Updating %s", cf->file_path);
+ cvs_log(LP_ERR, "Updating %s", cf->file_path);
return;
}