Module: wine Branch: master Commit: 67c8fa58ecb9a60de2fc2a718dbab6420110dc11 URL: http://source.winehq.org/git/wine.git/?a=commit;h=67c8fa58ecb9a60de2fc2a718d...
Author: Rob Shearman rob@codeweavers.com Date: Tue Jun 26 22:28:18 2007 +0100
rpcrt4: Store the assoc_group_id in the connections.
---
dlls/rpcrt4/rpc_binding.c | 1 + 1 files changed, 1 insertions(+), 0 deletions(-)
diff --git a/dlls/rpcrt4/rpc_binding.c b/dlls/rpcrt4/rpc_binding.c index 2097e86..79eceda 100644 --- a/dlls/rpcrt4/rpc_binding.c +++ b/dlls/rpcrt4/rpc_binding.c @@ -354,6 +354,7 @@ RPC_STATUS RPCRT4_OpenBinding(RpcBinding* Binding, RpcConnection** Connection, /* FIXME: do more checks? */
NewConnection->MaxTransmissionSize = response_hdr->bind_ack.max_tsize; + NewConnection->assoc_group_id = response_hdr->bind_ack.assoc_gid; NewConnection->ActiveInterface = *InterfaceId; RPCRT4_FreeHeader(response_hdr); }