Skip site navigation (1)Skip section navigation (2)
Date:      Sun, 11 Apr 2010 21:06:26 GMT
From:      Garrett Cooper <gcooper@FreeBSD.org>
To:        Perforce Change Reviews <perforce@FreeBSD.org>
Subject:   PERFORCE change 176818 for review
Message-ID:  <201004112106.o3BL6QQ3009598@repoman.freebsd.org>

next in thread | raw e-mail | index | archive | help
http://p4web.freebsd.org/@@176818?ac=10

Change 176818 by gcooper@gcooper-bayonetta on 2010/04/11 21:06:17

	We're no longer calling tar(1) from unpack on the command line, so there's no reason why the glob should be quoted.

Affected files ...

.. //depot/projects/soc2007/gcooper-pkg_install-enhancements-simplified/usr.sbin/pkg_install/info/perform.c#2 edit

Differences ...

==== //depot/projects/soc2007/gcooper-pkg_install-enhancements-simplified/usr.sbin/pkg_install/info/perform.c#2 (text+ko) ====

@@ -137,7 +137,7 @@
 	        goto bail;
 	    }
 	    make_playpen(PlayPen, sb.st_size / 2);
-	    if (unpack(fname, "'+*'")) {
+	    if (unpack(fname, "+*")) {
 		warnx("error during unpacking, no info for '%s' available", pkg);
 		code = 1;
 		goto bail;



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