as discussed in the Users list: replace "Short Frame" by "Packet size limited during capture" message

svn path=/trunk/; revision=15855
This commit is contained in:
Ulf Lamping 2005-09-18 11:18:42 +00:00
parent 5066d538c4
commit 497478bc99
1 changed files with 3 additions and 3 deletions

View File

@ -273,13 +273,13 @@ show_exception(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree,
case BoundsError:
if (check_col(pinfo->cinfo, COL_INFO))
col_append_str(pinfo->cinfo, COL_INFO, "[Short Frame]");
item = proto_tree_add_protocol_format(tree, proto_short, tvb, 0, 0,
"[Short Frame: %s (capture size was limited)]", pinfo->current_proto);
/*item =*/ proto_tree_add_protocol_format(tree, proto_short, tvb, 0, 0,
"[Packet size limited during capture: %s truncated]", pinfo->current_proto);
/* Don't record BoundsError exceptions as expert events - they merely
* reflect a capture done with a snapshot length too short to capture
* all of the packet
* (any case where it's caused by something else is a bug). */
/* expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Short Frame");*/
/* expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Packet size limited");*/
break;
case ReportedBoundsError: