- Minor correction to returned error.

svn path=/trunk/; revision=9101
This commit is contained in:
Filip Navara 2004-04-12 14:46:02 +00:00
parent 83d22245fd
commit a885a5c4bc

View file

@ -1,4 +1,4 @@
/* $Id: create.c,v 1.17 2004/04/12 13:03:29 navaraf Exp $ /* $Id: create.c,v 1.18 2004/04/12 14:46:02 navaraf Exp $
* *
* COPYRIGHT: See COPYING in the top level directory * COPYRIGHT: See COPYING in the top level directory
* PROJECT: ReactOS kernel * PROJECT: ReactOS kernel
@ -77,7 +77,7 @@ NpfsCreate(PDEVICE_OBJECT DeviceObject,
ExFreePool(ClientFcb); ExFreePool(ClientFcb);
KeUnlockMutex(&DeviceExt->PipeListLock); KeUnlockMutex(&DeviceExt->PipeListLock);
Irp->IoStatus.Status = STATUS_UNSUCCESSFUL; Irp->IoStatus.Status = STATUS_OBJECT_NAME_NOT_FOUND;
Irp->IoStatus.Information = 0; Irp->IoStatus.Information = 0;
IoCompleteRequest(Irp, IO_NO_INCREMENT); IoCompleteRequest(Irp, IO_NO_INCREMENT);