diff options
author | obrien <obrien@FreeBSD.org> | 2002-08-26 03:44:44 +0000 |
---|---|---|
committer | obrien <obrien@FreeBSD.org> | 2002-08-26 03:44:44 +0000 |
commit | a4a2c1790b16a9941bdc284aeb0683b4eb135d1a (patch) | |
tree | fe9686a9bf866f7ad2c0952283ec6817e053a4bf /usr.sbin | |
parent | 1c9e2cece82fa9d621615fd78958ef8ba6284aea (diff) | |
download | FreeBSD-src-a4a2c1790b16a9941bdc284aeb0683b4eb135d1a.zip FreeBSD-src-a4a2c1790b16a9941bdc284aeb0683b4eb135d1a.tar.gz |
Grrr.... mumble.... a linger gzip'ism still existed.
Submitted by: Craig Rodrigues <rodrigc@attbi.com>
Diffstat (limited to 'usr.sbin')
-rw-r--r-- | usr.sbin/pkg_install/lib/file.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/usr.sbin/pkg_install/lib/file.c b/usr.sbin/pkg_install/lib/file.c index 1878a89..64e6bcf 100644 --- a/usr.sbin/pkg_install/lib/file.c +++ b/usr.sbin/pkg_install/lib/file.c @@ -225,7 +225,7 @@ fileGetURL(const char *base, const char *spec) for (fd = getdtablesize() - 1; fd >= 3; --fd) close(fd); /* XXX: need to handle .tgz also */ - execl("/usr/bin/tar", "tar", Verbose ? "-xjvf" : "-xzf", "-", + execl("/usr/bin/tar", "tar", Verbose ? "-xjvf" : "-xjf", "-", (char *)0); _exit(2); } |