svn commit: r236453 - stable/9/usr.sbin/pkg_install/lib

Baptiste Daroussin bapt at FreeBSD.org
Sat Jun 2 16:16:04 UTC 2012


Author: bapt
Date: Sat Jun  2 16:16:03 2012
New Revision: 236453
URL: http://svn.freebsd.org/changeset/base/236453

Log:
  RFC: 235276
  
  - Print package name in case an empty pkgdep line is found.
  
  PR:		bin/164378
  Submitted by:	Yuri <yuri AT tsoft.com> and many others
  Approved by:	des (mentor)

Modified:
  stable/9/usr.sbin/pkg_install/lib/plist.c
Directory Properties:
  stable/9/usr.sbin/pkg_install/   (props changed)

Modified: stable/9/usr.sbin/pkg_install/lib/plist.c
==============================================================================
--- stable/9/usr.sbin/pkg_install/lib/plist.c	Sat Jun  2 15:14:12 2012	(r236452)
+++ stable/9/usr.sbin/pkg_install/lib/plist.c	Sat Jun  2 16:16:03 2012	(r236453)
@@ -286,7 +286,8 @@ read_plist(Package *pkg, FILE *fp)
 	if (*cp == '\0') {
 	    cp = NULL;
 	    if (cmd == PLIST_PKGDEP) {
-		warnx("corrupted record (pkgdep line without argument), ignoring");
+		warnx("corrupted record for package %s (pkgdep line without "
+			"argument), ignoring", pkg->name);
 		cmd = FAIL;
 	    }
 	    goto bottom;


More information about the svn-src-all mailing list