aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-vlan.c
diff options
context:
space:
mode:
authorJeff Morriss <jeff.morriss@ulticom.com>2010-10-11 20:16:35 +0000
committerJeff Morriss <jeff.morriss@ulticom.com>2010-10-11 20:16:35 +0000
commit0267a5293d62605d0e208fd3c21ad37b9a77c71a (patch)
treecc69de642253de6222d41a5a5273636f35bb8108 /epan/dissectors/packet-vlan.c
parent24d4eda0239de66c97c23547368c6dd0f77775e1 (diff)
Fix an error in a comment I added last week.
svn path=/trunk/; revision=34480
Diffstat (limited to 'epan/dissectors/packet-vlan.c')
-rw-r--r--epan/dissectors/packet-vlan.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/epan/dissectors/packet-vlan.c b/epan/dissectors/packet-vlan.c
index b138f4c6db..e7d7007821 100644
--- a/epan/dissectors/packet-vlan.c
+++ b/epan/dissectors/packet-vlan.c
@@ -136,7 +136,7 @@ dissect_vlan(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree)
802.2 layer inside the VLAN layer */
is_802_2 = TRUE;
- /* Don't throw an exception for this check (even a ReportedBoundsError) */
+ /* Don't throw an exception for this check (even a BoundsError) */
if (tvb_length_remaining(tvb, 4) >= 2) {
if (tvb_get_ntohs(tvb, 4) == 0xffff) {
is_802_2 = FALSE;