Fix an error in a comment I added last week.
authormorriss <morriss@f5534014-38df-0310-8fa8-9805f1628bb7>
Mon, 11 Oct 2010 20:16:35 +0000 (20:16 +0000)
committermorriss <morriss@f5534014-38df-0310-8fa8-9805f1628bb7>
Mon, 11 Oct 2010 20:16:35 +0000 (20:16 +0000)
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@34480 f5534014-38df-0310-8fa8-9805f1628bb7

epan/dissectors/packet-gmhdr.c
epan/dissectors/packet-vlan.c

index 7d2c8da88af3fda210d25e2d5bce5a3debcc0e85..5a1d6a2d94f150cb88a2b00274c71926a0e35c95 100644 (file)
@@ -190,7 +190,7 @@ dissect_gmhdr(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree)
        802.2 layer inside the GMHDR 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, offset) >= 2) {
       if (tvb_get_ntohs(tvb, offset) == 0xffff) {
         is_802_2 = FALSE;
index b138f4c6db6cf1f28a1fc847b69040218b4bdd3b..e7d70078218e12ed18a118680f4ebfe101203ceb 100644 (file)
@@ -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;