summaryrefslogtreecommitdiff
path: root/usr.bin/rcs/ci.c
diff options
context:
space:
mode:
authorXavier Santolaria <xsa@cvs.openbsd.org>2005-11-28 08:49:26 +0000
committerXavier Santolaria <xsa@cvs.openbsd.org>2005-11-28 08:49:26 +0000
commit325eb2df2572868493b077613b591a7ff2e7689a (patch)
treeb1047b45dc26a0fab59241390695426d9a4d4430 /usr.bin/rcs/ci.c
parentbbcff0fbaebbda154a6db9d17f2cd525c4b71f03 (diff)
consistency in error messages;
Diffstat (limited to 'usr.bin/rcs/ci.c')
-rw-r--r--usr.bin/rcs/ci.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/usr.bin/rcs/ci.c b/usr.bin/rcs/ci.c
index 6dc3c96b78f..0248b4c47de 100644
--- a/usr.bin/rcs/ci.c
+++ b/usr.bin/rcs/ci.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: ci.c,v 1.71 2005/11/27 17:47:18 niallo Exp $ */
+/* $OpenBSD: ci.c,v 1.72 2005/11/28 08:49:25 xsa Exp $ */
/*
* Copyright (c) 2005 Niall O'Higgins <niallo@openbsd.org>
* All rights reserved.
@@ -770,8 +770,7 @@ checkin_mtimedate(struct checkin_params *pb)
{
struct stat sb;
if (stat(pb->filename, &sb) != 0) {
- cvs_log(LP_ERRNO, "failed to stat: `%s'",
- pb->filename);
+ cvs_log(LP_ERRNO, "failed to stat `%s'", pb->filename);
rcs_close(pb->file);
return (-1);
}