PERFORCE change 176818 for review

Garrett Cooper gcooper at FreeBSD.org
Sun Apr 11 21:06:27 UTC 2010


http://p4web.freebsd.org/@@176818?ac=10

Change 176818 by gcooper at 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;


More information about the p4-projects mailing list