summaryrefslogtreecommitdiff
path: root/distrib
diff options
context:
space:
mode:
authorTheo de Raadt <deraadt@cvs.openbsd.org>1996-10-07 18:48:24 +0000
committerTheo de Raadt <deraadt@cvs.openbsd.org>1996-10-07 18:48:24 +0000
commite0d7ac165d6d70002bdd0b8585e184ae4130eb5d (patch)
tree7ee4523757be432eaad3312f7ca6853dc5eeece7 /distrib
parent046ed7b19c4d10f545f71badf3c42d11ec82ab63 (diff)
prompt with correct size
Diffstat (limited to 'distrib')
-rw-r--r--distrib/i386/floppies/inst/install.sh6
1 files changed, 3 insertions, 3 deletions
diff --git a/distrib/i386/floppies/inst/install.sh b/distrib/i386/floppies/inst/install.sh
index ab4e3662f2c..7332986cff8 100644
--- a/distrib/i386/floppies/inst/install.sh
+++ b/distrib/i386/floppies/inst/install.sh
@@ -1,5 +1,5 @@
#!/bin/sh
-# $OpenBSD: install.sh,v 1.13 1996/09/30 23:53:04 deraadt Exp $
+# $OpenBSD: install.sh,v 1.14 1996/10/07 18:48:23 deraadt Exp $
#
# Copyright (c) 1994 Christopher G. Demetriou
# All rights reserved.
@@ -322,8 +322,8 @@ while [ $part_used -lt $partition ]; do
echo ""
echo -n "$units_left $sizeunit remaining in OpenBSD portion of "
echo "the disk"
- echo -n "Next partition size (in $sizeunit) [$partition] ? "
- getresp "$partition"
+ echo -n "Next partition size (in $sizeunit) [$units_left] ? "
+ getresp "$units_left"
case $resp in
[1-9]*)
total=`expr $part_used + $resp`