summaryrefslogtreecommitdiff
path: root/usr.bin/rcs/ci.c
diff options
context:
space:
mode:
authorXavier Santolaria <xsa@cvs.openbsd.org>2005-10-30 09:46:08 +0000
committerXavier Santolaria <xsa@cvs.openbsd.org>2005-10-30 09:46:08 +0000
commit667327417d6b1d7dba697350f642de7acf92c6b2 (patch)
tree12da054c8ebff7a48000cc0e0c6a455c37cd8bbf /usr.bin/rcs/ci.c
parenteeb95f631fff3181322054a01f9192366d577c0c (diff)
string fix;
Diffstat (limited to 'usr.bin/rcs/ci.c')
-rw-r--r--usr.bin/rcs/ci.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/rcs/ci.c b/usr.bin/rcs/ci.c
index cb86752140e..ca9c9b0e8fb 100644
--- a/usr.bin/rcs/ci.c
+++ b/usr.bin/rcs/ci.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: ci.c,v 1.52 2005/10/29 19:10:16 niallo Exp $ */
+/* $OpenBSD: ci.c,v 1.53 2005/10/30 09:46:07 xsa Exp $ */
/*
* Copyright (c) 2005 Niall O'Higgins <niallo@openbsd.org>
* All rights reserved.
@@ -148,7 +148,7 @@ checkin_main(int argc, char **argv)
case 's':
state = rcs_optarg;
if (rcs_state_check(state) < 0) {
- cvs_log(LP_ERR, "invalid state `%'", state);
+ cvs_log(LP_ERR, "invalid state `%s'", state);
exit(1);
}
break;