From 06f95dcc1b4ae1bdde39826dadeea050324c1030 Mon Sep 17 00:00:00 2001 From: Tobias Stoeckmann Date: Thu, 22 May 2008 15:46:31 +0000 Subject: Wrong function names in fatal messages fixed. --- usr.bin/cvs/logmsg.c | 4 ++-- usr.bin/cvs/update.c | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) (limited to 'usr.bin/cvs') diff --git a/usr.bin/cvs/logmsg.c b/usr.bin/cvs/logmsg.c index 0445e653899..a2d440ce1ad 100644 --- a/usr.bin/cvs/logmsg.c +++ b/usr.bin/cvs/logmsg.c @@ -1,4 +1,4 @@ -/* $OpenBSD: logmsg.c,v 1.47 2008/03/09 01:02:38 tobias Exp $ */ +/* $OpenBSD: logmsg.c,v 1.48 2008/05/22 15:46:30 tobias Exp $ */ /* * Copyright (c) 2007 Joris Vink * @@ -58,7 +58,7 @@ cvs_logmsg_read(const char *path) fatal("cvs_logmsg_read: fdopen %s", strerror(errno)); if (st.st_size > SIZE_MAX) - fatal("cvs_buf_load_fd: %s: file size too big", path); + fatal("cvs_logmsg_read: %s: file size too big", path); lbuf = NULL; bp = cvs_buf_alloc(st.st_size); diff --git a/usr.bin/cvs/update.c b/usr.bin/cvs/update.c index 9d3a8b486d4..cd2f25594a4 100644 --- a/usr.bin/cvs/update.c +++ b/usr.bin/cvs/update.c @@ -1,4 +1,4 @@ -/* $OpenBSD: update.c,v 1.143 2008/05/22 15:45:01 tobias Exp $ */ +/* $OpenBSD: update.c,v 1.144 2008/05/22 15:46:30 tobias Exp $ */ /* * Copyright (c) 2006 Joris Vink * @@ -247,7 +247,7 @@ cvs_update_leavedir(struct cvs_file *cf) bufsize = st.st_blksize; if (st.st_size > SIZE_MAX) - fatal("cvs_buf_load_fd: %s: file size too big", cf->file_name); + fatal("cvs_update_leavedir: %s: file size too big", cf->file_name); isempty = 1; buf = xmalloc(bufsize); -- cgit v1.2.3