Module: wine Branch: refs/heads/master Commit: 9cebbdd80ffc7fc21369c2ceefc9479535575c63 URL: http://source.winehq.org/git/?p=wine.git;a=commit;h=9cebbdd80ffc7fc21369c2ce...
Author: Robert Shearman rob@codeweavers.com Date: Thu May 18 17:27:35 2006 +0100
rpcrt4: Fix for the open functions in the transports being transposed between ncacn_np and ncalrpc.
---
dlls/rpcrt4/rpc_transport.c | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/dlls/rpcrt4/rpc_transport.c b/dlls/rpcrt4/rpc_transport.c index 7e6ea97..4b2f9ae 100644 --- a/dlls/rpcrt4/rpc_transport.c +++ b/dlls/rpcrt4/rpc_transport.c @@ -381,7 +381,7 @@ static int rpcrt4_conn_tcp_close(RpcConn struct protseq_ops protseq_list[] = { { "ncacn_np", rpcrt4_conn_np_alloc, - rpcrt4_ncalrpc_open, + rpcrt4_ncacn_np_open, rpcrt4_conn_np_get_connect_event, rpcrt4_conn_np_handoff, rpcrt4_conn_np_read, @@ -390,7 +390,7 @@ struct protseq_ops protseq_list[] = { }, { "ncalrpc", rpcrt4_conn_np_alloc, - rpcrt4_ncacn_np_open, + rpcrt4_ncalrpc_open, rpcrt4_conn_np_get_connect_event, rpcrt4_conn_np_handoff, rpcrt4_conn_np_read,