mirror of
https://github.com/reactos/reactos.git
synced 2025-08-05 01:05:42 +00:00
[NTOSKRNL] Properly check for Ft volumes
This fixes a regression introduced in 5ab1cfc
which
was causing Unix (BtrFS, ExtX, and so on) volumes not
to be assigned a drive letter assigned anymore. And
thus, they were no longer mounted and presented to the
users.
CORE-16499
This commit is contained in:
parent
0a0e6a9f07
commit
324285f0b9
1 changed files with 1 additions and 1 deletions
|
@ -277,7 +277,7 @@ HalpQueryPartitionType(IN PUNICODE_STRING DeviceName,
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Check if that's a FT volume */
|
/* Check if that's a FT volume */
|
||||||
if (PartitionInfo.Mbr.PartitionType & PARTITION_NTFT)
|
if (IsFTPartition(PartitionInfo.Mbr.PartitionType))
|
||||||
{
|
{
|
||||||
*PartitionType = FtPartition;
|
*PartitionType = FtPartition;
|
||||||
return STATUS_SUCCESS;
|
return STATUS_SUCCESS;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue