our tar (paxtar) is now in /bin/tar not /usr/bin/tar
authorgraichen <graichen@openbsd.org>
Sun, 29 Dec 1996 12:19:08 +0000 (12:19 +0000)
committergraichen <graichen@openbsd.org>
Sun, 29 Dec 1996 12:19:08 +0000 (12:19 +0000)
usr.sbin/pkg_install/lib/file.c

index a50016a..1434d6f 100644 (file)
@@ -1,7 +1,7 @@
-/*     $OpenBSD: file.c,v 1.2 1996/06/04 08:43:42 niklas Exp $ */
+/*     $OpenBSD: file.c,v 1.3 1996/12/29 12:19:08 graichen Exp $       */
 
 #ifndef lint
-static const char *rcsid = "$OpenBSD: file.c,v 1.2 1996/06/04 08:43:42 niklas Exp $";
+static const char *rcsid = "$OpenBSD: file.c,v 1.3 1996/12/29 12:19:08 graichen Exp $";
 #endif
 
 /*
@@ -274,7 +274,7 @@ fileGetURL(char *base, char *spec)
            tpid = fork();
            if (!tpid) {
                dup2(fd, 0);
-               i = execl("/usr/bin/tar", "tar", Verbose ? "-xzvf" : "-xzf", "-", 0);
+               i = execl("/bin/tar", "tar", Verbose ? "-xzvf" : "-xzf", "-", 0);
                if (Verbose)
                    printf("tar command returns %d status\n", i);
                exit(i);