rpcrt4: Fix a typo in rpcrt4_conn_open_pipe.

Fix a typo in rpcrt4_conn_open_pipe where the initial setting of dwFlags 
was done inside the switch statement instead of at the indented place of 
at the start of the block (thanks to Jan Zerebecki for noticing this bug).
This commit is contained in:
Rob Shearman 2007-01-24 00:27:01 +00:00 committed by Alexandre Julliard
parent 61f646f2c1
commit 2103bca4db
1 changed files with 1 additions and 1 deletions

View File

@ -165,9 +165,9 @@ static RPC_STATUS rpcrt4_conn_open_pipe(RpcConnection *Connection, LPCSTR pname,
DWORD dwFlags = 0;
if (Connection->QOS)
{
dwFlags = SECURITY_SQOS_PRESENT;
switch (Connection->QOS->qos->ImpersonationType)
{
dwFlags = SECURITY_SQOS_PRESENT;
case RPC_C_IMP_LEVEL_DEFAULT:
/* FIXME: what to do here? */
break;