aboutsummaryrefslogtreecommitdiff
path: root/usr.sbin/sysinstall
diff options
context:
space:
mode:
authorJohn Baldwin <jhb@FreeBSD.org>2002-11-12 21:12:42 +0000
committerJohn Baldwin <jhb@FreeBSD.org>2002-11-12 21:12:42 +0000
commite324564167343636d867ae52104a268340d9cd3c (patch)
tree368a0fb79747b43237e15b925c0b66f2e84fba93 /usr.sbin/sysinstall
parentf193ff8342aa20b4cc894884f54052cdd918a49f (diff)
Notes
Diffstat (limited to 'usr.sbin/sysinstall')
-rw-r--r--usr.sbin/sysinstall/label.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/usr.sbin/sysinstall/label.c b/usr.sbin/sysinstall/label.c
index 7308071c714aa..baba30a5498be 100644
--- a/usr.sbin/sysinstall/label.c
+++ b/usr.sbin/sysinstall/label.c
@@ -1393,7 +1393,6 @@ diskLabelNonInteractive(Device *dev)
tmp->private_data = new_part(mpoint, TRUE);
tmp->private_free = safe_free;
((PartInfo *)tmp->private_data)->soft = soft;
- status = DITEM_SUCCESS;
}
}
}
@@ -1408,7 +1407,7 @@ diskLabelNonInteractive(Device *dev)
if (sscanf(cp, "%s %s", mpoint, do_newfs) != 2) {
msgConfirm("For slice entry %s, got an invalid detail entry of: %s", c1->name, cp);
status = DITEM_FAILURE;
- continue;
+ break;
}
newfs = toupper(do_newfs[0]) == 'Y' ? TRUE : FALSE;
if (c1->private_data) {