From 7aafe66984c7ec7e0b110e3e22d34d62f2d41682 Mon Sep 17 00:00:00 2001 From: Michael Pfeiffer Date: Sun, 14 Sep 2008 12:43:41 +0000 Subject: [PATCH] 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 --- src/apps/bootman/LegacyBootDrive.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/apps/bootman/LegacyBootDrive.cpp b/src/apps/bootman/LegacyBootDrive.cpp index 073dc395ca..6f0cd04335 100644 --- a/src/apps/bootman/LegacyBootDrive.cpp +++ b/src/apps/bootman/LegacyBootDrive.cpp @@ -170,7 +170,7 @@ PartitionRecorder::FirstOffset() const bool PartitionRecorder::_Record(BPartition* partition) { - if (!partition->ContainsFileSystem()) + if (partition->ContainsPartitioningSystem()) return false; BPath partitionPath;