rpcrt4: Print the correct values when warning about a bad frag length.

This commit is contained in:
Rob Shearman 2007-04-29 17:46:16 +01:00 committed by Alexandre Julliard
parent ec4be6a258
commit 35e99b50f1
1 changed files with 1 additions and 1 deletions

View File

@ -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;
}