Skip site navigation (1)Skip section navigation (2)
Date:      Sat, 2 Jun 2012 16:16:03 +0000 (UTC)
From:      Baptiste Daroussin <bapt@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-stable@freebsd.org, svn-src-stable-9@freebsd.org
Subject:   svn commit: r236453 - stable/9/usr.sbin/pkg_install/lib
Message-ID:  <201206021616.q52GG3lC098979@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
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;



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201206021616.q52GG3lC098979>