Fixed a wrong ops when creating named pipe client.

This commit is contained in:
Eric Pouech 2005-05-09 09:25:45 +00:00 committed by Alexandre Julliard
parent da13552c55
commit f479eef986
1 changed files with 1 additions and 1 deletions

View File

@ -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 );