mirror of
https://github.com/reactos/reactos.git
synced 2024-12-27 17:44:45 +00:00
Reverted my last changes which allows to read from a listening pipe.
svn path=/trunk/; revision=14307
This commit is contained in:
parent
bb8e4bcd9e
commit
0341276444
1 changed files with 1 additions and 2 deletions
|
@ -283,8 +283,7 @@ NpfsReadFromPipe(PNPFS_CONTEXT Context)
|
|||
goto done;
|
||||
}
|
||||
|
||||
if (Fcb->PipeState != FILE_PIPE_CONNECTED_STATE &&
|
||||
!(Fcb->PipeState == FILE_PIPE_LISTENING_STATE && Fcb->PipeEnd == FILE_PIPE_SERVER_END))
|
||||
if (Fcb->PipeState != FILE_PIPE_CONNECTED_STATE)
|
||||
{
|
||||
DPRINT("PipeState: %x\n", Fcb->PipeState);
|
||||
Status = STATUS_PIPE_BROKEN;
|
||||
|
|
Loading…
Reference in a new issue