From fc157853b06e9fc5df89adb61cc10fffb36c75a5 Mon Sep 17 00:00:00 2001 From: Ken Smith Date: Tue, 30 Dec 2008 17:16:52 +0000 Subject: [PATCH] Clean up this message a little bit. --- usr.sbin/sysinstall/disks.c | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/usr.sbin/sysinstall/disks.c b/usr.sbin/sysinstall/disks.c index 16256690bf46..ba7bbffbf11e 100644 --- a/usr.sbin/sysinstall/disks.c +++ b/usr.sbin/sysinstall/disks.c @@ -119,9 +119,8 @@ check_geometry(Disk *d) dialog_clear_norefresh(); sg = msgYesNo("WARNING: It is safe to use a geometry of %lu/%lu/%lu for %s on\n" "computers with modern BIOS versions. If this disk is to be used\n" - "on rather old machines, however, it is recommended to ensure that\n" - "it does not have more than 65535 cylinders, or more than 255 heads\n" - "or more than " + "on an old machine it is recommended that it does not have more\n" + "than 65535 cylinders, more than 255 heads, or more than\n" #ifdef PC98 "255" #else @@ -129,7 +128,7 @@ check_geometry(Disk *d) #endif " sectors per track.\n" "\n" - "Would you like that to keep using the current geometry?\n", + "Would you like to keep using the current geometry?\n", d->bios_cyl, d->bios_hd, d->bios_sect, d->name); if (sg == 1) { Sanitize_Bios_Geom(d);