summaryrefslogtreecommitdiff
path: root/release
diff options
context:
space:
mode:
authorPoul-Henning Kamp <phk@FreeBSD.org>2001-09-14 18:31:38 +0000
committerPoul-Henning Kamp <phk@FreeBSD.org>2001-09-14 18:31:38 +0000
commit355a9e77ac37954a2582311fac867092d5821d4e (patch)
tree4667d0672dbcca6946e02e9708959b0feb03f93e /release
parent0d632bf0224f2bf02282b21c89d0f9ad6bafb1ce (diff)
Notes
Diffstat (limited to 'release')
-rw-r--r--release/sysinstall/install.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/release/sysinstall/install.c b/release/sysinstall/install.c
index 11153c8fe16f..231ee3f70677 100644
--- a/release/sysinstall/install.c
+++ b/release/sysinstall/install.c
@@ -204,7 +204,7 @@ installInitial(void)
/* If we refuse to proceed, bail. */
dialog_clear_norefresh();
- if (!variable_get(VAR_NO_WARN))
+ if (!variable_get(VAR_NO_WARN)) {
if (msgYesNo(
"Last Chance! Are you SURE you want continue the installation?\n\n"
"If you're running this on a disk with data you wish to save\n"
@@ -212,6 +212,7 @@ installInitial(void)
"proceeding!\n\n"
"We can take no responsibility for lost disk contents!") != 0)
return DITEM_FAILURE;
+ }
if (DITEM_STATUS(diskLabelCommit(NULL)) != DITEM_SUCCESS) {
msgConfirm("Couldn't make filesystems properly. Aborting.");