aboutsummaryrefslogtreecommitdiff
path: root/usr.sbin/sade
diff options
context:
space:
mode:
authorJohn Baldwin <jhb@FreeBSD.org>2002-12-03 16:09:55 +0000
committerJohn Baldwin <jhb@FreeBSD.org>2002-12-03 16:09:55 +0000
commit6066c0d2ee3b77d31583910e3c1fc671bfec27c8 (patch)
tree681ea7729d482c816f10439d41499e5ab89b8d95 /usr.sbin/sade
parent5d93b6af54e446504a42c6a91733bff8e14989f4 (diff)
Notes
Diffstat (limited to 'usr.sbin/sade')
-rw-r--r--usr.sbin/sade/disks.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.sbin/sade/disks.c b/usr.sbin/sade/disks.c
index bc6c2244583e..c240a0970a1f 100644
--- a/usr.sbin/sade/disks.c
+++ b/usr.sbin/sade/disks.c
@@ -450,7 +450,7 @@ diskPartition(Device *dev)
else if (subtype == SUBTYPE_EFI)
partitiontype = efi;
else
- partitiontype = unknown;
+ partitiontype = mbr;
Create_Chunk(d, chunk_info[current_chunk]->offset, size, partitiontype, subtype,
(chunk_info[current_chunk]->flags & CHUNK_ALIGN), name);
variable_set2(DISK_PARTITIONED, "yes", 0);
@@ -509,7 +509,7 @@ diskPartition(Device *dev)
else if (subtype == SUBTYPE_EFI)
partitiontype = efi;
else
- partitiontype = unknown;
+ partitiontype = mbr;
chunk_info[current_chunk]->type = partitiontype;
chunk_info[current_chunk]->subtype = subtype;
}