Commit fb8a44f3 authored by Zebediah Figura's avatar Zebediah Figura Committed by Alexandre Julliard

ntdll: Don't translate Unix virtual disks to FILE_DEVICE_VIRTUAL_DISK.

parent 63b66c99
...@@ -6029,12 +6029,15 @@ static NTSTATUS get_device_info( int fd, FILE_FS_DEVICE_INFORMATION *info ) ...@@ -6029,12 +6029,15 @@ static NTSTATUS get_device_info( int fd, FILE_FS_DEVICE_INFORMATION *info )
info->DeviceType = FILE_DEVICE_NETWORK_FILE_SYSTEM; info->DeviceType = FILE_DEVICE_NETWORK_FILE_SYSTEM;
info->Characteristics |= FILE_REMOTE_DEVICE; info->Characteristics |= FILE_REMOTE_DEVICE;
break; break;
case 0x01021994: /* tmpfs */
case 0x28cd3d45: /* cramfs */
case 0x1373: /* devfs */ case 0x1373: /* devfs */
case 0x9fa0: /* procfs */ case 0x9fa0: /* procfs */
info->DeviceType = FILE_DEVICE_VIRTUAL_DISK; info->DeviceType = FILE_DEVICE_VIRTUAL_DISK;
break; break;
case 0x01021994: /* tmpfs */
case 0x28cd3d45: /* cramfs */
/* Don't map these to FILE_DEVICE_VIRTUAL_DISK by default. Virtual
* filesystems are rare on Windows, and some programs refuse to
* recognize them as valid. */
default: default:
info->DeviceType = FILE_DEVICE_DISK_FILE_SYSTEM; info->DeviceType = FILE_DEVICE_DISK_FILE_SYSTEM;
break; break;
...@@ -6078,8 +6081,9 @@ static NTSTATUS get_device_info( int fd, FILE_FS_DEVICE_INFORMATION *info ) ...@@ -6078,8 +6081,9 @@ static NTSTATUS get_device_info( int fd, FILE_FS_DEVICE_INFORMATION *info )
info->Characteristics |= FILE_REMOVABLE_MEDIA; info->Characteristics |= FILE_REMOVABLE_MEDIA;
break; break;
case DKC_MD: case DKC_MD:
info->DeviceType = FILE_DEVICE_VIRTUAL_DISK; /* Don't map these to FILE_DEVICE_VIRTUAL_DISK by default. Virtual
break; * filesystems are rare on Windows, and some programs refuse to
* recognize them as valid. */
default: default:
info->DeviceType = FILE_DEVICE_DISK_FILE_SYSTEM; info->DeviceType = FILE_DEVICE_DISK_FILE_SYSTEM;
} }
......
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