mirror of
https://github.com/reactos/reactos.git
synced 2025-08-05 09:03:25 +00:00
[MUP]
Return STATUS_OBJECT_NAME_INVALID instead of STATUS_BAD_NETWORK_PATH, fixes some tests (kernel32:FindFiles in particular). svn path=/trunk/; revision=59364
This commit is contained in:
parent
56a80263d4
commit
aa185f871c
1 changed files with 2 additions and 3 deletions
|
@ -51,9 +51,8 @@ MupCreate(PDEVICE_OBJECT DeviceObject,
|
||||||
|
|
||||||
FileObject = Stack->FileObject;
|
FileObject = Stack->FileObject;
|
||||||
|
|
||||||
DPRINT("FileName: '%wZ'\n", &FileObject->FileName);
|
DPRINT1("MUP - Unimplemented (FileName: '%wZ')\n", &FileObject->FileName);
|
||||||
|
Status = STATUS_OBJECT_NAME_INVALID; // STATUS_BAD_NETWORK_PATH;
|
||||||
Status = STATUS_BAD_NETWORK_PATH;
|
|
||||||
|
|
||||||
Irp->IoStatus.Information = (NT_SUCCESS(Status)) ? FILE_OPENED : 0;
|
Irp->IoStatus.Information = (NT_SUCCESS(Status)) ? FILE_OPENED : 0;
|
||||||
Irp->IoStatus.Status = Status;
|
Irp->IoStatus.Status = Status;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue