Commit 9cebbdd8 authored by Robert Shearman's avatar Robert Shearman Committed by Alexandre Julliard

rpcrt4: Fix for the open functions in the transports being transposed between ncacn_np and ncalrpc.

parent c1a31cef
...@@ -381,7 +381,7 @@ static int rpcrt4_conn_tcp_close(RpcConnection *Connection) ...@@ -381,7 +381,7 @@ static int rpcrt4_conn_tcp_close(RpcConnection *Connection)
struct protseq_ops protseq_list[] = { struct protseq_ops protseq_list[] = {
{ "ncacn_np", { "ncacn_np",
rpcrt4_conn_np_alloc, rpcrt4_conn_np_alloc,
rpcrt4_ncalrpc_open, rpcrt4_ncacn_np_open,
rpcrt4_conn_np_get_connect_event, rpcrt4_conn_np_get_connect_event,
rpcrt4_conn_np_handoff, rpcrt4_conn_np_handoff,
rpcrt4_conn_np_read, rpcrt4_conn_np_read,
...@@ -390,7 +390,7 @@ struct protseq_ops protseq_list[] = { ...@@ -390,7 +390,7 @@ struct protseq_ops protseq_list[] = {
}, },
{ "ncalrpc", { "ncalrpc",
rpcrt4_conn_np_alloc, rpcrt4_conn_np_alloc,
rpcrt4_ncacn_np_open, rpcrt4_ncalrpc_open,
rpcrt4_conn_np_get_connect_event, rpcrt4_conn_np_get_connect_event,
rpcrt4_conn_np_handoff, rpcrt4_conn_np_handoff,
rpcrt4_conn_np_read, rpcrt4_conn_np_read,
......
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