diff options
| author | John Baldwin <jhb@FreeBSD.org> | 2002-11-12 21:12:42 +0000 |
|---|---|---|
| committer | John Baldwin <jhb@FreeBSD.org> | 2002-11-12 21:12:42 +0000 |
| commit | e324564167343636d867ae52104a268340d9cd3c (patch) | |
| tree | 368a0fb79747b43237e15b925c0b66f2e84fba93 /usr.sbin/sysinstall | |
| parent | f193ff8342aa20b4cc894884f54052cdd918a49f (diff) | |
Notes
Diffstat (limited to 'usr.sbin/sysinstall')
| -rw-r--r-- | usr.sbin/sysinstall/label.c | 3 |
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) { |
