summaryrefslogtreecommitdiff
path: root/usr.bin/cvs
diff options
context:
space:
mode:
authorXavier Santolaria <xsa@cvs.openbsd.org>2007-08-27 19:18:06 +0000
committerXavier Santolaria <xsa@cvs.openbsd.org>2007-08-27 19:18:06 +0000
commit7c2b325da7734bb3e0fd9d4e92cde7c44fb85895 (patch)
tree8a62d797d832e30881caf15936d128d8c1b8a6c3 /usr.bin/cvs
parent5ebd37a2394795894d9443056ce29aa8fda5ea34 (diff)
typo in error msg; from Igor Zinovik.
Diffstat (limited to 'usr.bin/cvs')
-rw-r--r--usr.bin/cvs/rcs.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/cvs/rcs.c b/usr.bin/cvs/rcs.c
index 4973f3f31a1..3e4ac6c9ee1 100644
--- a/usr.bin/cvs/rcs.c
+++ b/usr.bin/cvs/rcs.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: rcs.c,v 1.215 2007/07/03 13:22:43 joris Exp $ */
+/* $OpenBSD: rcs.c,v 1.216 2007/08/27 19:18:05 xsa Exp $ */
/*
* Copyright (c) 2004 Jean-Francois Brousseau <jfb@openbsd.org>
* All rights reserved.
@@ -1553,7 +1553,7 @@ rcs_parse_init(RCSFILE *rfp)
pdp->rp_pttype = RCS_TOK_ERR;
if ((pdp->rp_file = fdopen(rfp->fd, "r")) == NULL)
- fatal("fopen: `%s'", rfp->rf_path);
+ fatal("fdopen: `%s'", rfp->rf_path);
pdp->rp_buf = xmalloc((size_t)RCS_BUFSIZE);
pdp->rp_blen = RCS_BUFSIZE;