svn commit: r193921 - stable/7/contrib/csup

Ulf Lilleengen lulf at FreeBSD.org
Wed Jun 10 14:01:24 UTC 2009


Author: lulf
Date: Wed Jun 10 14:01:23 2009
New Revision: 193921
URL: http://svn.freebsd.org/changeset/base/193921

Log:
  MFC r193213:
  - Add missing data argument to printf.

Modified:
  stable/7/contrib/csup/   (props changed)
  stable/7/contrib/csup/updater.c

Modified: stable/7/contrib/csup/updater.c
==============================================================================
--- stable/7/contrib/csup/updater.c	Wed Jun 10 13:59:05 2009	(r193920)
+++ stable/7/contrib/csup/updater.c	Wed Jun 10 14:01:23 2009	(r193921)
@@ -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-all mailing list