https://git.reactos.org/?p=reactos.git;a=commitdiff;h=961693f0609a6998a8b88…
commit 961693f0609a6998a8b8810d0e30001d36f7e0fd
Author: Pierre Schweitzer <pierre(a)reactos.org>
AuthorDate: Sat Oct 19 16:52:29 2019 +0200
Commit: Pierre Schweitzer <pierre(a)reactos.org>
CommitDate: Sat Oct 19 16:59:58 2019 +0200
[MOUNTMGR] Fix IsFtVolume so that it returns TRUE only for FT volumes
---
drivers/filters/mountmgr/device.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/drivers/filters/mountmgr/device.c b/drivers/filters/mountmgr/device.c
index 8ed81e327d0..4f3f9d2974e 100644
--- a/drivers/filters/mountmgr/device.c
+++ b/drivers/filters/mountmgr/device.c
@@ -393,7 +393,7 @@ IsFtVolume(IN PUNICODE_STRING SymbolicName)
}
/* Check if this is a FT volume */
- return IsRecognizedPartition(PartitionInfo.PartitionType);
+ return IsFTPartition(PartitionInfo.PartitionType);
}
/*