From 45661165b87781cb30f10d71d2ce9cf488d6b2d4 Mon Sep 17 00:00:00 2001 From: Michael Martin Date: Mon, 5 Jan 2009 11:52:44 +0000 Subject: [PATCH] - Change and silence a debug message that made it look like npfsRead had a problem. svn path=/trunk/; revision=38577 --- reactos/drivers/filesystems/npfs/rw.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/reactos/drivers/filesystems/npfs/rw.c b/reactos/drivers/filesystems/npfs/rw.c index 780ec8ee3b3..5831bc0e445 100644 --- a/reactos/drivers/filesystems/npfs/rw.c +++ b/reactos/drivers/filesystems/npfs/rw.c @@ -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 , 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) Status = STATUS_PIPE_LISTENING; else if (Ccb->PipeState == FILE_PIPE_DISCONNECTED_STATE)