diff options
author | dm <dm@cvs.openbsd.org> | 1996-06-25 04:51:54 +0000 |
---|---|---|
committer | dm <dm@cvs.openbsd.org> | 1996-06-25 04:51:54 +0000 |
commit | 7762c181e7fb113216381095c29d6bcb95810616 (patch) | |
tree | e6b7112945a2157497bbf9bce4cde95af27239e2 | |
parent | 8c586d1aff54bf4d413af30cdafdc084e3f1ef56 (diff) |
our tar has no --fast-read
-rw-r--r-- | usr.sbin/pkg_install/add/perform.c | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/usr.sbin/pkg_install/add/perform.c b/usr.sbin/pkg_install/add/perform.c index ff9a3ba939c..d17c605cc77 100644 --- a/usr.sbin/pkg_install/add/perform.c +++ b/usr.sbin/pkg_install/add/perform.c @@ -1,7 +1,7 @@ -/* $OpenBSD: perform.c,v 1.2 1996/06/04 08:43:34 niklas Exp $ */ +/* $OpenBSD: perform.c,v 1.3 1996/06/25 04:51:53 dm Exp $ */ #ifndef lint -static const char *rcsid = "$OpenBSD: perform.c,v 1.2 1996/06/04 08:43:34 niklas Exp $"; +static const char *rcsid = "$OpenBSD: perform.c,v 1.3 1996/06/25 04:51:53 dm Exp $"; #endif /* @@ -115,7 +115,11 @@ pkg_do(char *pkg) whinge("Can't stat package file '%s'.", pkg_fullname); goto bomb; } +#if 0 sprintf(extract_contents, "--fast-read %s", CONTENTS_FNAME); +#else + sprintf(extract_contents, "%s", CONTENTS_FNAME); +#endif extract = extract_contents; } else |