diff options
author | Tobias Stoeckmann <tobias@cvs.openbsd.org> | 2008-01-13 11:11:09 +0000 |
---|---|---|
committer | Tobias Stoeckmann <tobias@cvs.openbsd.org> | 2008-01-13 11:11:09 +0000 |
commit | d23241f1ee65bf03adec587d1d563e3dc6c08bbe (patch) | |
tree | da39c0f5a7bbb59425f10015ba5ea0615ac0c79e /usr.bin | |
parent | 8b5e37d51faa2e2099fa0e888449fce59ac1ef87 (diff) |
Typos fixed.
OK xsa@
> Diff from Igor Zinovik.
Diffstat (limited to 'usr.bin')
-rw-r--r-- | usr.bin/cvs/commit.c | 4 | ||||
-rw-r--r-- | usr.bin/cvs/rcs.c | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/usr.bin/cvs/commit.c b/usr.bin/cvs/commit.c index d4e149deabc..988b9858929 100644 --- a/usr.bin/cvs/commit.c +++ b/usr.bin/cvs/commit.c @@ -1,4 +1,4 @@ -/* $OpenBSD: commit.c,v 1.117 2008/01/10 09:54:04 tobias Exp $ */ +/* $OpenBSD: commit.c,v 1.118 2008/01/13 11:11:08 tobias Exp $ */ /* * Copyright (c) 2006 Joris Vink <joris@openbsd.org> * Copyright (c) 2006 Xavier Santolaria <xsa@openbsd.org> @@ -512,7 +512,7 @@ commit_diff(struct cvs_file *cf, RCSNUM *rev, int reverse) if (cf->file_status == FILE_MODIFIED || cf->file_status == FILE_ADDED) { if ((b1 = cvs_buf_load_fd(cf->fd, BUF_AUTOEXT)) == NULL) - fatal("commit_diff_file: failed to load '%s'", + fatal("commit_diff: failed to load '%s'", cf->file_path); cvs_buf_write_stmp(b1, p1, NULL); cvs_buf_free(b1); diff --git a/usr.bin/cvs/rcs.c b/usr.bin/cvs/rcs.c index e1f688468d2..78d7781aca2 100644 --- a/usr.bin/cvs/rcs.c +++ b/usr.bin/cvs/rcs.c @@ -1,4 +1,4 @@ -/* $OpenBSD: rcs.c,v 1.237 2008/01/10 10:48:50 tobias Exp $ */ +/* $OpenBSD: rcs.c,v 1.238 2008/01/13 11:11:08 tobias Exp $ */ /* * Copyright (c) 2004 Jean-Francois Brousseau <jfb@openbsd.org> * All rights reserved. @@ -2658,7 +2658,7 @@ rcs_translate_tag(const char *revstr, RCSFILE *rfp) /* * rcs_rev_getlines() * - * Get the entire contents of revision <rev> from the RCSFILE <rfp> and + * Get the entire contents of revision <frev> from the RCSFILE <rfp> and * return it as a pointer to a struct cvs_lines. */ struct cvs_lines * |