rpcrt4: Correct spelling of RPC_C_QOS_IDENTITY_STATIC and RPC_C_QOS_IDENTITY_DYNAMIC.
This commit is contained in:
parent
9c3c49f472
commit
4b33527f51
|
@ -214,7 +214,7 @@ static RPC_STATUS rpcrt4_conn_open_pipe(RpcConnection *Connection, LPCSTR pname,
|
|||
dwFlags |= SECURITY_DELEGATION;
|
||||
break;
|
||||
}
|
||||
if (Connection->QOS->qos->IdentityTracking == RPC_C_QOS_IDENTIFY_DYNAMIC)
|
||||
if (Connection->QOS->qos->IdentityTracking == RPC_C_QOS_IDENTITY_DYNAMIC)
|
||||
dwFlags |= SECURITY_CONTEXT_TRACKING;
|
||||
}
|
||||
pipe = CreateFileA(pname, GENERIC_READ|GENERIC_WRITE, 0, NULL,
|
||||
|
|
|
@ -158,8 +158,8 @@ typedef I_RPC_HANDLE *RPC_EP_INQ_HANDLE;
|
|||
#define RPC_C_IMP_LEVEL_DELEGATE 4
|
||||
|
||||
/* values for RPC_SECURITY_QOS*::IdentityTracking */
|
||||
#define RPC_C_QOS_IDENTIFY_STATIC 0
|
||||
#define RPC_C_QOS_IDENTIFY_DYNAMIC 1
|
||||
#define RPC_C_QOS_IDENTITY_STATIC 0
|
||||
#define RPC_C_QOS_IDENTITY_DYNAMIC 1
|
||||
|
||||
/* flags for RPC_SECURITY_QOS*::Capabilities */
|
||||
#define RPC_C_QOS_CAPABILITIES_DEFAULT 0x0
|
||||
|
|
Loading…
Reference in New Issue