Cygwin: AF_UNIX: open_pipe: call recv_peer_info

If open_pipe is called with xchg_sock_info true, call recv_peer_info
in addition to send_sock_info.
This commit is contained in:
Ken Brown 2020-10-04 11:05:33 -04:00
parent 6748c6ecf8
commit 2031b48c93
1 changed files with 5 additions and 1 deletions

View File

@ -941,7 +941,11 @@ fhandler_socket_unix::open_pipe (PUNICODE_STRING pipe_name, bool xchg_sock_info)
{
set_handle (ph);
if (xchg_sock_info)
{
/* FIXME: Should we check for errors? */
send_sock_info (false);
recv_peer_info ();
}
}
return status;
}