summaryrefslogtreecommitdiffstats
path: root/lib
diff options
context:
space:
mode:
authorphk <phk@FreeBSD.org>2002-10-29 07:37:11 +0000
committerphk <phk@FreeBSD.org>2002-10-29 07:37:11 +0000
commit4d780c389d8695ba56c4f246e67218d78ffd14fb (patch)
treeaef549ef9febd624dffde19bf0a7b3f68552fefd /lib
parentaee7fb11fe4d5f75a6b006ea8f5e420ae6520a8a (diff)
downloadFreeBSD-src-4d780c389d8695ba56c4f246e67218d78ffd14fb.zip
FreeBSD-src-4d780c389d8695ba56c4f246e67218d78ffd14fb.tar.gz
the 'd' partition hasn't been magic for years, so allocate it in natural
order instead of last.
Diffstat (limited to 'lib')
-rw-r--r--lib/libdisk/create_chunk.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/libdisk/create_chunk.c b/lib/libdisk/create_chunk.c
index 7a7fdb4..72c8e2b 100644
--- a/lib/libdisk/create_chunk.c
+++ b/lib/libdisk/create_chunk.c
@@ -79,7 +79,7 @@ Fixup_FreeBSD_Names(struct disk *d, struct chunk *c)
/* Allocate the rest sequentially */
for (c1 = c->part; c1; c1 = c1->next) {
- const char order[] = "efghabd";
+ const char order[] = "defghab";
if (c1->type == unused) continue;
if (strcmp("X", c1->name)) continue;
OpenPOWER on IntegriCloud