rpcrt4: Fix a trace in RPCRT4_SecurePacket.

This commit is contained in:
Rob Shearman 2007-09-11 17:46:34 +01:00 committed by Alexandre Julliard
parent 9ddc872a1a
commit 2eb0e1ce21

View file

@ -415,7 +415,7 @@ static RPC_STATUS RPCRT4_SecurePacket(RpcConnection *Connection,
sec_status = DecryptMessage(&Connection->ctx, &message, 0 /* FIXME */, 0);
if (sec_status != SEC_E_OK)
{
ERR("EncryptMessage failed with 0x%08x\n", sec_status);
ERR("DecryptMessage failed with 0x%08x\n", sec_status);
return RPC_S_SEC_PKG_ERROR;
}
}