aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorUlf Lamping <ulf.lamping@web.de>2005-09-18 11:18:42 +0000
committerUlf Lamping <ulf.lamping@web.de>2005-09-18 11:18:42 +0000
commit497478bc99c468255a9238f817f573348b6e852d (patch)
treefb659a483f721c83bf24b09837d93ef69b5f90ab
parent5066d538c480aa2ff37884ca672b39d5ba91f8d4 (diff)
as discussed in the Users list: replace "Short Frame" by "Packet size limited during capture" message
svn path=/trunk/; revision=15855
-rw-r--r--epan/dissectors/packet-frame.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/epan/dissectors/packet-frame.c b/epan/dissectors/packet-frame.c
index 1c1cac5aee..5a3ae172eb 100644
--- a/epan/dissectors/packet-frame.c
+++ b/epan/dissectors/packet-frame.c
@@ -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: