summaryrefslogtreecommitdiff
path: root/usr.bin/cvs/resp.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/cvs/resp.c
parentbbcff0fbaebbda154a6db9d17f2cd525c4b71f03 (diff)
consistency in error messages;
Diffstat (limited to 'usr.bin/cvs/resp.c')
-rw-r--r--usr.bin/cvs/resp.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/cvs/resp.c b/usr.bin/cvs/resp.c
index 06fabf277ce..71e7cfa0394 100644
--- a/usr.bin/cvs/resp.c
+++ b/usr.bin/cvs/resp.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: resp.c,v 1.61 2005/10/22 17:32:57 joris Exp $ */
+/* $OpenBSD: resp.c,v 1.62 2005/11/28 08:49:25 xsa Exp $ */
/*
* Copyright (c) 2004 Jean-Francois Brousseau <jfb@openbsd.org>
* All rights reserved.
@@ -436,7 +436,7 @@ cvs_resp_createdir(char *line)
*/
if (stat(line, &st) == -1) {
if (errno != ENOENT) {
- cvs_log(LP_ERRNO, "failed to stat '%s'", line);
+ cvs_log(LP_ERRNO, "failed to stat `%s'", line);
return (-1);
}