As reported in ticket #2477 the fix in r27149 does not work for NTFS partition.

Now all partitions are bootable that do not contain a partitioning system.

git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@27503 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
Michael Pfeiffer
2008-09-14 12:43:41 +00:00
parent 959ff00dde
commit 7aafe66984
+1 -1
View File
@@ -170,7 +170,7 @@ PartitionRecorder::FirstOffset() const
bool
PartitionRecorder::_Record(BPartition* partition)
{
if (!partition->ContainsFileSystem())
if (partition->ContainsPartitioningSystem())
return false;
BPath partitionPath;