Cygwin: fhandler_pipe.cc:nt_select: fix flags again

This commit is contained in:
Ken Brown 2021-08-30 11:54:04 -04:00 committed by Corinna Vinschen
parent 9d4e58be76
commit 6b52d97900
1 changed files with 3 additions and 6 deletions

View File

@ -686,10 +686,8 @@ nt_create (LPSECURITY_ATTRIBUTES sa_ptr, PHANDLE r, PHANDLE w,
npfsh, sa_ptr->lpSecurityDescriptor);
timeout.QuadPart = -500000;
status = NtCreateNamedPipeFile (r, access, &attr, &io,
FILE_SHARE_READ | FILE_SHARE_WRITE,
FILE_CREATE, FILE_SYNCHRONOUS_IO_NONALERT,
pipe_type, FILE_PIPE_BYTE_STREAM_MODE,
status = NtCreateNamedPipeFile (r, access, &attr, &io, 0, FILE_CREATE,
0, pipe_type, FILE_PIPE_BYTE_STREAM_MODE,
0, 1, psize, psize, &timeout);
if (NT_SUCCESS (status))
@ -738,8 +736,7 @@ nt_create (LPSECURITY_ATTRIBUTES sa_ptr, PHANDLE r, PHANDLE w,
debug_printf ("NtOpenFile: name %S", &pipename);
access = GENERIC_WRITE | FILE_READ_ATTRIBUTES | SYNCHRONIZE;
status = NtOpenFile (w, access, &attr, &io, 0,
FILE_SYNCHRONOUS_IO_NONALERT);
status = NtOpenFile (w, access, &attr, &io, 0, 0);
if (!NT_SUCCESS (status))
{
DWORD err = GetLastError ();