summaryrefslogtreecommitdiff
path: root/usr.bin/cvs/release.c
diff options
context:
space:
mode:
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);
}