the 'd' partition hasn't been magic for years, so allocate it in natural

order instead of last.
This commit is contained in:
Poul-Henning Kamp 2002-10-29 07:37:11 +00:00
parent b6c0192ce3
commit bab7e1509c

View File

@ -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;