diff options
author | Kenneth R Westerback <krw@cvs.openbsd.org> | 2002-05-07 02:03:58 +0000 |
---|---|---|
committer | Kenneth R Westerback <krw@cvs.openbsd.org> | 2002-05-07 02:03:58 +0000 |
commit | 8a8b1bf25ac279126dac055da157f8d4308be9ea (patch) | |
tree | 01e458c8346fced21a7cb4f47ba9431566eaedfd /distrib/sun3 | |
parent | a1f2735cbfe67dbe688eff5bb528a34183b29405 (diff) |
All architectures now use miniroot, so eliminate last few getresp()
calls in favour of ask().
Fix the erroneous advice I gave to Hugh in vax getresp() -> ask().
ok deraadt@
Diffstat (limited to 'distrib/sun3')
-rw-r--r-- | distrib/sun3/install.md | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/distrib/sun3/install.md b/distrib/sun3/install.md index 8fcb57b1195..c1b5c3afd92 100644 --- a/distrib/sun3/install.md +++ b/distrib/sun3/install.md @@ -1,4 +1,4 @@ -# $OpenBSD: install.md,v 1.5 2002/03/31 17:30:31 deraadt Exp $ +# $OpenBSD: install.md,v 1.6 2002/05/07 02:03:57 krw Exp $ # # # Copyright (c) 1996 The NetBSD Foundation, Inc. @@ -45,8 +45,7 @@ ARCH=ARCH md_set_term() { test -n "$TERM" && return - echo -n "Specify terminal type [sun]: " - getresp sun + ask "Specify terminal type:" sun TERM=$resp export TERM } |