summaryrefslogtreecommitdiffstats
path: root/usr.bin/cvs/commit.c
diff options
context:
space:
mode:
authortobias <tobias@openbsd.org>2008-01-13 11:11:08 +0000
committertobias <tobias@openbsd.org>2008-01-13 11:11:08 +0000
commit17b2872a65f91c7ffc22a26274067f65caad17eb (patch)
tree7bd63030731a147abd3e0d31aa2b5da0746b2589 /usr.bin/cvs/commit.c
parentAdded missing break statements. (diff)
downloadwireguard-openbsd-17b2872a65f91c7ffc22a26274067f65caad17eb.tar.xz
wireguard-openbsd-17b2872a65f91c7ffc22a26274067f65caad17eb.zip
Typos fixed.
OK xsa@ > Diff from Igor Zinovik.
Diffstat (limited to 'usr.bin/cvs/commit.c')
-rw-r--r--usr.bin/cvs/commit.c4
1 files changed, 2 insertions, 2 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);