summaryrefslogtreecommitdiff
path: root/usr.bin/cvs/release.c
diff options
context:
space:
mode:
authorXavier Santolaria <xsa@cvs.openbsd.org>2005-05-31 08:26:41 +0000
committerXavier Santolaria <xsa@cvs.openbsd.org>2005-05-31 08:26:41 +0000
commit7e9436fcf71abf14289b42e70a59c34d9a1cf105 (patch)
tree93e941a389912deb84566eb0eeb0279318576035 /usr.bin/cvs/release.c
parent074fe3429f7e828daafb59f10c9aa5fd3d433fb4 (diff)
remove LP_ERROR log priority level and rather use LP_ERR as they are both
the same... ok jfb joris
Diffstat (limited to 'usr.bin/cvs/release.c')
-rw-r--r--usr.bin/cvs/release.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/usr.bin/cvs/release.c b/usr.bin/cvs/release.c
index 4bf803a92a3..b4bcc8d6faf 100644
--- a/usr.bin/cvs/release.c
+++ b/usr.bin/cvs/release.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: release.c,v 1.8 2005/05/27 17:04:59 jfb Exp $ */
+/* $OpenBSD: release.c,v 1.9 2005/05/31 08:26:40 xsa Exp $ */
/*
* Copyright (c) 2005 Xavier Santolaria <xsa@openbsd.org>
* All rights reserved.
@@ -188,7 +188,7 @@ cvs_release_dir(CVSFILE *cdir, void *arg)
/* XXX we should try to avoid a new connection ... */
if ((fp = popen(updcmd, "r")) == NULL) {
- cvs_log(LP_ERROR, "cannot run command `%s'",
+ cvs_log(LP_ERR, "cannot run command `%s'",
updcmd);
return (CVS_EX_DATA);
}
@@ -200,7 +200,7 @@ cvs_release_dir(CVSFILE *cdir, void *arg)
}
if (pclose(fp) != 0) {
- cvs_log(LP_ERROR, "unable to release `%s'",
+ cvs_log(LP_ERR, "unable to release `%s'",
dpath);
return (CVS_EX_DATA);
}