diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 2001-02-12 09:54:10 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 2001-02-12 09:54:10 +0000 |
commit | e00c301f1f47114388144c10536f6ad2867b615a (patch) | |
tree | 7a3b533b382c1eb338918f6fb293130ef1811590 /distrib | |
parent | be0a755b7b86c5781895f5a5caf1c27bd371f75c (diff) |
fix http handling; reported as busted by don@research-cistw.saic.com
Diffstat (limited to 'distrib')
-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 865726f95e5..b3389b2e9a4 100644 --- a/distrib/miniroot/install.sub +++ b/distrib/miniroot/install.sub @@ -1,5 +1,5 @@ #!/bin/sh -# $OpenBSD: install.sub,v 1.160 2000/12/10 02:40:39 deraadt Exp $ +# $OpenBSD: install.sub,v 1.161 2001/02/12 09:54:09 deraadt Exp $ # $NetBSD: install.sub,v 1.5.2.8 1996/09/02 23:25:02 pk Exp $ # # Copyright (c) 1997,1998 Todd Miller, Theo de Raadt @@ -867,7 +867,7 @@ local _url_type _url_base _reuse _minpat while test $# != 0; do case "$1" in -ftp) _url_type=ftp ;; - -html) _url_type=http ;; + -http) _url_type=http ;; -reuse) _reuse=1 ;; -minpat) shift; _minpat="$1" ;; esac |