diff options
author | Tobias Stoeckmann <tobias@cvs.openbsd.org> | 2008-06-14 00:47:50 +0000 |
---|---|---|
committer | Tobias Stoeckmann <tobias@cvs.openbsd.org> | 2008-06-14 00:47:50 +0000 |
commit | d51a920e71c0333e6b0bc86c0222322cf08e3af7 (patch) | |
tree | 4c55349c58cc3dea2f517c29c79801262bff194d /usr.bin/cvs/rcs.c | |
parent | 0cd6bc96b4980a0af3432ee1a026d40571891e94 (diff) |
Fixed wrong function name in fatal call.
Diffstat (limited to 'usr.bin/cvs/rcs.c')
-rw-r--r-- | usr.bin/cvs/rcs.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/cvs/rcs.c b/usr.bin/cvs/rcs.c index f6355ea3018..2bbeb32bbad 100644 --- a/usr.bin/cvs/rcs.c +++ b/usr.bin/cvs/rcs.c @@ -1,4 +1,4 @@ -/* $OpenBSD: rcs.c,v 1.271 2008/06/12 17:06:17 joris Exp $ */ +/* $OpenBSD: rcs.c,v 1.272 2008/06/14 00:47:49 tobias Exp $ */ /* * Copyright (c) 2004 Jean-Francois Brousseau <jfb@openbsd.org> * All rights reserved. @@ -3542,7 +3542,7 @@ rcs_translate_tag(const char *revstr, RCSFILE *rfp) if (rdp->rd_next->rn_len == 0) break; if ((rdp = rcs_findrev(rfp, rdp->rd_next)) == NULL) - fatal("rcs_get_revision: could not fetch " + fatal("rcs_translate_tag: could not fetch " "branch delta"); } |