Fix apparent copy-paste-o that was leading to an 'unused variable' warning on

bleeding-edge GCC.

svn path=/trunk/; revision=48918
This commit is contained in:
Evan Huus 2013-04-18 19:31:24 +00:00
parent c0c15029ed
commit e1f903a2b2
1 changed files with 1 additions and 1 deletions

View File

@ -493,7 +493,7 @@ dissect_clnp(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree)
}
if (total_length < segment_length) {
/* Reassembled length is less than the length of this segment. */
expert_add_info_format(pinfo, ti_pdu_len, PI_MALFORMED, PI_ERROR,
expert_add_info_format(pinfo, ti_tot_len, PI_MALFORMED, PI_ERROR,
"Total length < segment length %u", segment_length);
return;
}