diff options
author | Matt Wilson <msw@redhat.com> | 1999-11-23 21:08:56 +0000 |
---|---|---|
committer | Matt Wilson <msw@redhat.com> | 1999-11-23 21:08:56 +0000 |
commit | c3d5a7b0d5d8aafbd13ef57147e0920c8410d1ef (patch) | |
tree | 1065f8143691c136cfc1d01b70e7bab93ac5aa43 /balkan | |
parent | c6949a368ffe68f43f1eddb6973e5eabeb140833 (diff) | |
download | anaconda-c3d5a7b0d5d8aafbd13ef57147e0920c8410d1ef.tar.gz anaconda-c3d5a7b0d5d8aafbd13ef57147e0920c8410d1ef.tar.xz anaconda-c3d5a7b0d5d8aafbd13ef57147e0920c8410d1ef.zip |
merge with anaconda-6-1-1-merge-2
Diffstat (limited to 'balkan')
-rw-r--r-- | balkan/dos.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/balkan/dos.c b/balkan/dos.c index 40410fadc..a0462dcb1 100644 --- a/balkan/dos.c +++ b/balkan/dos.c @@ -94,7 +94,8 @@ static int readNextTable(int fd, struct partitionTable * table, int nextNum, for (i = 0; i < 4; i++) { if (!singleTable.parts[i].size) continue; - if (singleTable.parts[i].type == DOSP_TYPE_EXTENDED) { + if (singleTable.parts[i].type == DOSP_TYPE_EXTENDED || + singleTable.parts[i].type == WINP_TYPE_EXTENDED) { if (gotExtended) return BALKAN_ERROR_BADTABLE; gotExtended = 1; |