diff options
author | 2017-02-19 17:53:58 +0000 | |
---|---|---|
committer | 2017-02-19 17:53:58 +0000 | |
commit | d0de16d00abb3e0833c3aec631c98b3754a1d5b1 (patch) | |
tree | fe09faf4f9fb63e7aa90f5ae6c940a00eccca95a | |
parent | more old mirror targets (diff) | |
download | wireguard-openbsd-d0de16d00abb3e0833c3aec631c98b3754a1d5b1.tar.xz wireguard-openbsd-d0de16d00abb3e0833c3aec631c98b3754a1d5b1.zip |
Remove an unfortunate significant trailing whitespace that ended up passing
a bogus argument to ftp(1), disabling redirection and running ftp(1) in the
background.
ok rpe
-rw-r--r-- | distrib/miniroot/install.sub | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/distrib/miniroot/install.sub b/distrib/miniroot/install.sub index 5c269b1ba77..4ceea77f236 100644 --- a/distrib/miniroot/install.sub +++ b/distrib/miniroot/install.sub @@ -1,5 +1,5 @@ #!/bin/ksh -# $OpenBSD: install.sub,v 1.973 2017/02/14 22:23:04 rpe Exp $ +# $OpenBSD: install.sub,v 1.974 2017/02/19 17:53:58 tb Exp $ # # Copyright (c) 1997-2015 Todd Miller, Theo de Raadt, Ken Westerback # Copyright (c) 2015, Robert Peichaer <rpe@openbsd.org> @@ -2775,7 +2775,7 @@ do_install(){ _i=$_i${INSTALL_METHOD:+method=$INSTALL_METHOD} _i=${_i%&} [[ -n $_i ]] && unpriv2 ftp -w 15 -Vao - \ - "$HTTP_PROTO://ftp.openbsd.org/cgi-bin/ftpinstall.cgi?dbversion=1&$_i" \ + "$HTTP_PROTO://ftp.openbsd.org/cgi-bin/ftpinstall.cgi?dbversion=1&$_i" \ >/dev/null 2>&1 & fi |