aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-cisco-metadata.c
diff options
context:
space:
mode:
Diffstat (limited to 'epan/dissectors/packet-cisco-metadata.c')
-rw-r--r--epan/dissectors/packet-cisco-metadata.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/epan/dissectors/packet-cisco-metadata.c b/epan/dissectors/packet-cisco-metadata.c
index eaf0dfd351..299f3361d9 100644
--- a/epan/dissectors/packet-cisco-metadata.c
+++ b/epan/dissectors/packet-cisco-metadata.c
@@ -83,7 +83,7 @@ dissect_cmd(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree)
gboolean is_802_2 = TRUE;
/* Don't throw an exception for this check (even a BoundsError) */
- if (tvb_length_remaining(tvb, 4) >= 2) {
+ if (tvb_captured_length_remaining(tvb, 4) >= 2) {
if (tvb_get_ntohs(tvb, 4) == 0xffff)
is_802_2 = FALSE;
}