Search
j0ke.net Open Build Service
>
Projects
>
GFS
>
multipath-tools
> multipath-tools-kpartx-allow-extended-partitions
Sign Up
|
Log In
Username
Password
Cancel
Overview
Repositories
Revisions
Requests
Users
Advanced
Attributes
Meta
File multipath-tools-kpartx-allow-extended-partitions of Package multipath-tools
diff --git a/kpartx/dos.c b/kpartx/dos.c index a707423..039c002 100644 --- a/kpartx/dos.c +++ b/kpartx/dos.c @@ -98,8 +98,8 @@ read_dos_pt(int fd, struct slice all, st } if (is_extended(p.sys_type)) { n += read_extended_partition(fd, &p, sp+n, ns-n); - /* hide the extended partition itself */ - sp[i].size = 0; + /* Set size to 1 to allow further partitions */ + sp[i].size = 1; } } return n;