From 5046edb01256c46da814f0181b02fb421a4458c0 Mon Sep 17 00:00:00 2001 From: Mounir IDRASSI Date: Fri, 26 May 2017 00:23:55 +0200 Subject: Windows Driver: Correctly detect FAT volumes created on Linux in TC_IOCTL_OPEN_TEST FileSystem detection --- src/Driver/Ntdriver.c | 2 ++ 1 file changed, 2 insertions(+) (limited to 'src/Driver/Ntdriver.c') diff --git a/src/Driver/Ntdriver.c b/src/Driver/Ntdriver.c index 236fb9ef..f8db446f 100644 --- a/src/Driver/Ntdriver.c +++ b/src/Driver/Ntdriver.c @@ -1357,6 +1357,8 @@ NTSTATUS ProcessMainDeviceControlIrp (PDEVICE_OBJECT DeviceObject, PEXTENSION Ex case 0xEB58904D53444F53: // FAT32 case 0xEB76904558464154: // exFAT case 0x0000005265465300: // ReFS + case 0xEB58906D6B66732E: // FAT by mkfs.fat + case 0xEB58906D6B646F73: // FAT by mkfs.vfat/mkdosfs opentest->FilesystemDetected = TRUE; break; } -- cgit v1.2.3