Drop has_pipe_reject_remote_clients flag
This commit is contained in:
@ -229,9 +229,7 @@ fhandler_pipe::create (LPSECURITY_ATTRIBUTES sa_ptr, PHANDLE r, PHANDLE w,
|
||||
char pipename[MAX_PATH];
|
||||
size_t len = __small_sprintf (pipename, PIPE_INTRO "%S-",
|
||||
&cygheap->installation_key);
|
||||
DWORD pipe_mode = PIPE_READMODE_BYTE
|
||||
| (wincap.has_pipe_reject_remote_clients ()
|
||||
? PIPE_REJECT_REMOTE_CLIENTS : 0);
|
||||
DWORD pipe_mode = PIPE_READMODE_BYTE | PIPE_REJECT_REMOTE_CLIENTS;
|
||||
if (!name)
|
||||
pipe_mode |= pipe_byte ? PIPE_TYPE_BYTE : PIPE_TYPE_MESSAGE;
|
||||
else
|
||||
|
Reference in New Issue
Block a user