svn commit: r193213 - head/contrib/csup
Ulf Lilleengen
lulf at FreeBSD.org
Mon Jun 1 09:25:32 UTC 2009
Author: lulf
Date: Mon Jun 1 09:25:32 2009
New Revision: 193213
URL: http://svn.freebsd.org/changeset/base/193213
Log:
- Add missing data argument to printf.
Submitted by: Pawel Worach <pawel.worach -AT- gmail.com>
MFC after: 1 week
Modified:
head/contrib/csup/updater.c
Modified: head/contrib/csup/updater.c
==============================================================================
--- head/contrib/csup/updater.c Mon Jun 1 09:03:55 2009 (r193212)
+++ head/contrib/csup/updater.c Mon Jun 1 09:25:32 2009 (r193213)
@@ -1858,7 +1858,7 @@ updater_append_file(struct updater *up,
goto bad;
}
if (nread == -1) {
- xasprintf(&up->errmsg, "%s: Error reading: %s",
+ xasprintf(&up->errmsg, "%s: Error reading: %s", fup->destpath,
strerror(errno));
return (UPDATER_ERR_MSG);
}
More information about the svn-src-head
mailing list