Session needs a higher priority than ISO 9660 or the latter might "steal"

multi-session CDs. Maybe partitioning systems should give preference over
file systems, though.
This fixes bug #1634.


git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@23891 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
Axel Dörfler
2008-02-06 11:00:26 +00:00
parent 05d8f5251b
commit 217d31eac9
@@ -52,7 +52,7 @@ identify_partition(int fd, partition_data *partition, void **cookie)
Disc *disc = new Disc(fd);
if (disc && disc->InitCheck() == B_OK) {
*cookie = static_cast<void*>(disc);
result = 0.5;
result = 0.7;
}
}
PRINT(("returning %ld\n", int32(result * 10000)));