Commit 5d51d4c8 authored by Francois Gouget's avatar Francois Gouget Committed by Alexandre Julliard

ntdll: Return FILE_DEVICE_CD_ROM_FILE_SYSTEM for supermount filesystems.

parent 70533219
......@@ -1579,6 +1579,7 @@ NTSTATUS FILE_GetDeviceInfo( int fd, FILE_FS_DEVICE_INFORMATION *info )
switch (stfs.f_type)
{
case 0x9660: /* iso9660 */
case 0x9fa1: /* supermount */
case 0x15013346: /* udf */
info->DeviceType = FILE_DEVICE_CD_ROM_FILE_SYSTEM;
info->Characteristics |= FILE_REMOVABLE_MEDIA|FILE_READ_ONLY_DEVICE;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment