From 35e99b50f165307af3fc11add928c70d41aaaef1 Mon Sep 17 00:00:00 2001 From: Rob Shearman Date: Sun, 29 Apr 2007 17:46:16 +0100 Subject: [PATCH] rpcrt4: Print the correct values when warning about a bad frag length. --- dlls/rpcrt4/rpc_message.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dlls/rpcrt4/rpc_message.c b/dlls/rpcrt4/rpc_message.c index 10866020dd4..a30c9254af0 100644 --- a/dlls/rpcrt4/rpc_message.c +++ b/dlls/rpcrt4/rpc_message.c @@ -691,7 +691,7 @@ RPC_STATUS RPCRT4_Receive(RpcConnection *Connection, RpcPktHdr **Header, if (((*Header)->common.frag_len < hdr_length) || ((*Header)->common.frag_len - hdr_length < header_auth_len)) { WARN("frag_len %d too small for hdr_length %d and auth_len %d\n", - common_hdr.frag_len, hdr_length, common_hdr.auth_len); + (*Header)->common.frag_len, hdr_length, header_auth_len); status = RPC_S_PROTOCOL_ERROR; goto fail; }