mirror of
https://github.com/reactos/wine.git
synced 2025-02-16 10:59:45 +00:00
mountmgr.sys: Better fixme for unsupported ioctls.
This commit is contained in:
parent
8b733dd313
commit
9752bf8f04
@ -938,10 +938,14 @@ static NTSTATUS WINAPI harddisk_ioctl( DEVICE_OBJECT *device, IRP *irp )
|
||||
break;
|
||||
}
|
||||
default:
|
||||
FIXME( "unsupported ioctl %x\n", irpsp->Parameters.DeviceIoControl.IoControlCode );
|
||||
{
|
||||
ULONG code = irpsp->Parameters.DeviceIoControl.IoControlCode;
|
||||
FIXME("Unsupported ioctl %x (device=%x access=%x func=%x method=%x)\n",
|
||||
code, code >> 16, (code >> 14) & 3, (code >> 2) & 0xfff, code & 3);
|
||||
irp->IoStatus.u.Status = STATUS_NOT_SUPPORTED;
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
||||
LeaveCriticalSection( &device_section );
|
||||
IoCompleteRequest( irp, IO_NO_INCREMENT );
|
||||
|
Loading…
x
Reference in New Issue
Block a user