Commit dc69e660 authored by Mark Moriarty's avatar Mark Moriarty

Truncated packet debug message -- state reported vs. actual length, not the delta.

parent bd8f524e
...@@ -1211,8 +1211,8 @@ static int mms_ParsePacket( access_t *p_access, ...@@ -1211,8 +1211,8 @@ static int mms_ParsePacket( access_t *p_access,
if( i_packet_length > i_data || i_packet_length <= 8) if( i_packet_length > i_data || i_packet_length <= 8)
{ {
msg_Dbg( p_access, msg_Dbg( p_access,
"truncated packet (missing %d bytes)", "truncated packet (Declared %d bytes, Actual %d bytes)",
i_packet_length - i_data ); i_packet_length, i_data );
*pi_used = 0; *pi_used = 0;
return -1; return -1;
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment