diff options
author | jkh <jkh@FreeBSD.org> | 2000-12-14 02:49:02 +0000 |
---|---|---|
committer | jkh <jkh@FreeBSD.org> | 2000-12-14 02:49:02 +0000 |
commit | c8394629dce8024ccb9d10490623035b757c034b (patch) | |
tree | 8b1e5ad94d0002f9b6fdae7211a93c59006db6cb /usr.sbin/sysinstall/disks.c | |
parent | 41a7e78c6b5ace25de009b8707f66f8543288720 (diff) | |
download | FreeBSD-src-c8394629dce8024ccb9d10490623035b757c034b.zip FreeBSD-src-c8394629dce8024ccb9d10490623035b757c034b.tar.gz |
Adapt sysinstall to use the new msgNoYes() function which assumes
no as a default. Sysinstall should be both less dangerous and less
annoying as a result of this change, though that's just my opinion
(since they're the defaults which annoy ME the least :).
Diffstat (limited to 'usr.sbin/sysinstall/disks.c')
-rw-r--r-- | usr.sbin/sysinstall/disks.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/usr.sbin/sysinstall/disks.c b/usr.sbin/sysinstall/disks.c index e93ff5a..ce05ea0 100644 --- a/usr.sbin/sysinstall/disks.c +++ b/usr.sbin/sysinstall/disks.c @@ -528,7 +528,7 @@ diskPartition(Device *dev) msgConfirm("You've already written this information out - you\n" "can't undo it."); } - else if (!msgYesNo("Are you SURE you want to Undo everything?")) { + else if (!msgNoYes("Are you SURE you want to Undo everything?")) { char cp[BUFSIZ]; sstrncpy(cp, d->name, sizeof cp); @@ -546,7 +546,7 @@ diskPartition(Device *dev) break; case 'W': - if (!msgYesNo("WARNING: This should only be used when modifying an EXISTING\n" + if (!msgNoYes("WARNING: This should only be used when modifying an EXISTING\n" "installation. If you are installing FreeBSD for the first time\n" "then you should simply type Q when you're finished here and your\n" "changes will be committed in one batch automatically at the end of\n" @@ -599,7 +599,7 @@ diskPartition(Device *dev) break; case '|': - if (!msgYesNo("Are you SURE you want to go into Wizard mode?\n" + if (!msgNoYes("Are you SURE you want to go into Wizard mode?\n" "No seat belts whatsoever are provided!")) { clear(); refresh(); |