Commit f479eef9 authored by Eric Pouech's avatar Eric Pouech Committed by Alexandre Julliard

Fixed a wrong ops when creating named pipe client.

parent da13552c
......@@ -601,7 +601,7 @@ DECL_HANDLER(open_named_pipe)
{
assert( !client->fd );
assert( !server->fd );
client->fd = create_anonymous_fd( &pipe_server_fd_ops,
client->fd = create_anonymous_fd( &pipe_client_fd_ops,
fds[1], &client->obj );
server->fd = create_anonymous_fd( &pipe_server_fd_ops,
fds[0], &server->obj );
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment