aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-ieee8023.c
diff options
context:
space:
mode:
authorGuy Harris <guy@alum.mit.edu>2013-02-28 18:13:41 +0000
committerGuy Harris <guy@alum.mit.edu>2013-02-28 18:13:41 +0000
commit6c29b9edd6db4cfa809a8ede8d22539df117dffe (patch)
treec66467202d37b57f93b719734e63bfac44808092 /epan/dissectors/packet-ieee8023.c
parente8af5b4e67edc8f3a1334beaebbf2364e82877da (diff)
Update a comment.
svn path=/trunk/; revision=47947
Diffstat (limited to 'epan/dissectors/packet-ieee8023.c')
-rw-r--r--epan/dissectors/packet-ieee8023.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/epan/dissectors/packet-ieee8023.c b/epan/dissectors/packet-ieee8023.c
index 89d1e14b25..5cba83a3cd 100644
--- a/epan/dissectors/packet-ieee8023.c
+++ b/epan/dissectors/packet-ieee8023.c
@@ -76,10 +76,10 @@ dissect_802_3(volatile int length, gboolean is_802_2, tvbuff_t *tvb,
next_tvb = tvb_new_subset(tvb, offset_after_length, captured_length, length);
/* Dissect the payload either as IPX or as an LLC frame.
- Catch BoundsError and ReportedBoundsError, so that if the
- reported length of "next_tvb" was reduced by some dissector
- before an exception was thrown, we can still put in an item
- for the trailer. */
+ Catch non-fatal exceptions, so that if the reported length
+ of "next_tvb" was reduced by some dissector before an
+ exception was thrown, we can still put in an item for
+ the trailer. */
saved_proto = pinfo->current_proto;
pd_save = pinfo->private_data;
TRY {