summaryrefslogtreecommitdiff
path: root/pkgtools/pkg_install/files/lib/ftpio.c
diff options
context:
space:
mode:
Diffstat (limited to 'pkgtools/pkg_install/files/lib/ftpio.c')
-rw-r--r--pkgtools/pkg_install/files/lib/ftpio.c9
1 files changed, 5 insertions, 4 deletions
diff --git a/pkgtools/pkg_install/files/lib/ftpio.c b/pkgtools/pkg_install/files/lib/ftpio.c
index f8544801eb6..da72c5489b4 100644
--- a/pkgtools/pkg_install/files/lib/ftpio.c
+++ b/pkgtools/pkg_install/files/lib/ftpio.c
@@ -1,4 +1,4 @@
-/* $NetBSD: ftpio.c,v 1.7 2003/10/29 23:00:28 jlam Exp $ */
+/* $NetBSD: ftpio.c,v 1.8 2003/12/20 04:23:05 grant Exp $ */
#if HAVE_CONFIG_H
#include "config.h"
@@ -8,7 +8,7 @@
#include <sys/cdefs.h>
#endif
#ifndef lint
-__RCSID("$NetBSD: ftpio.c,v 1.7 2003/10/29 23:00:28 jlam Exp $");
+__RCSID("$NetBSD: ftpio.c,v 1.8 2003/12/20 04:23:05 grant Exp $");
#endif
/*-
@@ -1102,7 +1102,7 @@ http_fetch(const char *url, const char *path)
if ((path != NULL) && (chdir(path) < 0))
_exit(127);
- if (unpack("-", Verbose ? "-vv" : NULL, NULL) != 0) {
+ if (unpack("-", NULL) != 0) {
warnx("unpack failed");
_exit(2);
}
@@ -1203,7 +1203,8 @@ unpackURL(const char *url, const char *dir)
#if 0
path_create(pkg_path); /* XXX */
#endif
- printf("setenv PKG_PATH='%s'\n",pkg_path);
+ if (Verbose)
+ printf("setenv PKG_PATH='%s'\n", pkg_path);
}
if (strncmp(url, "http://", 7) == 0)