mirror of
https://github.com/reactos/reactos.git
synced 2025-04-25 08:00:24 +00:00
- Change and silence a debug message that made it look like npfsRead had a problem.
svn path=/trunk/; revision=38577
This commit is contained in:
parent
01cb1291d8
commit
45661165b8
1 changed files with 1 additions and 1 deletions
|
@ -326,7 +326,7 @@ NpfsRead(IN PDEVICE_OBJECT DeviceObject,
|
||||||
{
|
{
|
||||||
/* Its ok if the other side has been Disconnect, but if we have data still in the buffer
|
/* Its ok if the other side has been Disconnect, but if we have data still in the buffer
|
||||||
, need to still be able to read it. Currently this is a HAXXXX */
|
, need to still be able to read it. Currently this is a HAXXXX */
|
||||||
DPRINT1("Pipe is NO longer connected and no data exist in buffer!\n");
|
DPRINT("Pipe no longer connected and no data exist in buffer. Ok to close pipe\n");
|
||||||
if (Ccb->PipeState == FILE_PIPE_LISTENING_STATE)
|
if (Ccb->PipeState == FILE_PIPE_LISTENING_STATE)
|
||||||
Status = STATUS_PIPE_LISTENING;
|
Status = STATUS_PIPE_LISTENING;
|
||||||
else if (Ccb->PipeState == FILE_PIPE_DISCONNECTED_STATE)
|
else if (Ccb->PipeState == FILE_PIPE_DISCONNECTED_STATE)
|
||||||
|
|
Loading…
Reference in a new issue