svn commit: r236455 - stable/7/usr.sbin/pkg_install/lib

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


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

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/7/usr.sbin/pkg_install/lib/plist.c
Directory Properties:
  stable/7/usr.sbin/pkg_install/   (props changed)

Modified: stable/7/usr.sbin/pkg_install/lib/plist.c
==============================================================================
--- stable/7/usr.sbin/pkg_install/lib/plist.c	Sat Jun  2 16:16:45 2012	(r236454)
+++ stable/7/usr.sbin/pkg_install/lib/plist.c	Sat Jun  2 16:17:25 2012	(r236455)
@@ -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