diff options
author | Kenneth R Westerback <krw@cvs.openbsd.org> | 2003-09-26 00:11:26 +0000 |
---|---|---|
committer | Kenneth R Westerback <krw@cvs.openbsd.org> | 2003-09-26 00:11:26 +0000 |
commit | e1b0adb568ee2b51a65b9b88d9201cb8f2a41f93 (patch) | |
tree | 3d56455aed1de69e96a6779863a461bd1fef12fb /distrib | |
parent | 4ab087733958821d62880ef7bca21cfec6d2b52f (diff) |
Fix typo: 'Which disk do you wish to initialize??' -> '... initialize?'.
Only appeared when non-boot disks were initialized.
Diffstat (limited to 'distrib')
-rw-r--r-- | distrib/miniroot/install.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/distrib/miniroot/install.sh b/distrib/miniroot/install.sh index 497e1f98313..8bdf24934f0 100644 --- a/distrib/miniroot/install.sh +++ b/distrib/miniroot/install.sh @@ -1,5 +1,5 @@ #!/bin/sh -# $OpenBSD: install.sh,v 1.137 2003/09/22 01:31:39 krw Exp $ +# $OpenBSD: install.sh,v 1.138 2003/09/26 00:11:25 krw Exp $ # $NetBSD: install.sh,v 1.5.2.8 1996/08/27 18:15:05 gwr Exp $ # # Copyright (c) 1997-2002 Todd Miller, Theo de Raadt, Ken Westerback @@ -100,7 +100,7 @@ if [ ! -f /etc/fstab ]; then else # Force the user to think and type in a disk name by # making 'done' the default choice. - ask_which "disk" "do you wish to initialize?" "$_DKDEVS" done "No more disks to initialize" + ask_which "disk" "do you wish to initialize" "$_DKDEVS" done "No more disks to initialize" [[ $resp == done ]] && break fi |