summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorderaadt <deraadt@openbsd.org>2009-04-26 21:20:27 +0000
committerderaadt <deraadt@openbsd.org>2009-04-26 21:20:27 +0000
commit7de6af9f92e838493d0ec5b5ee65fd737dc459b5 (patch)
tree3067e455c1acb2e24925a56b86c3e0ef25137195
parentadjust the numbers for the "big" auto-allocation scheme with otto (diff)
downloadwireguard-openbsd-7de6af9f92e838493d0ec5b5ee65fd737dc459b5.tar.xz
wireguard-openbsd-7de6af9f92e838493d0ec5b5ee65fd737dc459b5.zip
no more need for ftp -T option, since it is automatic now
-rw-r--r--distrib/miniroot/install.sub6
1 files changed, 3 insertions, 3 deletions
diff --git a/distrib/miniroot/install.sub b/distrib/miniroot/install.sub
index 26db66e81eb..aa3d116a8cb 100644
--- a/distrib/miniroot/install.sub
+++ b/distrib/miniroot/install.sub
@@ -1,4 +1,4 @@
-# $OpenBSD: install.sub,v 1.487 2009/04/26 03:01:39 deraadt Exp $
+# $OpenBSD: install.sub,v 1.488 2009/04/26 21:20:27 deraadt Exp $
# $NetBSD: install.sub,v 1.5.2.8 1996/09/02 23:25:02 pk Exp $
#
# Copyright (c) 1997-2009 Todd Miller, Theo de Raadt, Ken Westerback
@@ -988,10 +988,10 @@ __EOT
echo -n "Getting $_f ..."
rm -f /tmp/h
case $_f in
- *.tgz) ftp -T "$_f" $FTPOPTS -o - -m "$_src/$_f" | \
+ *.tgz) ftp $FTPOPTS -o - -m "$_src/$_f" | \
$shacmd | tar zxphf - -C /mnt
;;
- *) ftp -T "$_f" $FTPOPTS -o - -m "$_src/$_f" | \
+ *) ftp $FTPOPTS -o - -m "$_src/$_f" | \
$shacmd > "/mnt/$_f"
;;
esac