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;