aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-laplink.c
diff options
context:
space:
mode:
Diffstat (limited to 'epan/dissectors/packet-laplink.c')
-rw-r--r--epan/dissectors/packet-laplink.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/epan/dissectors/packet-laplink.c b/epan/dissectors/packet-laplink.c
index 0e590154b1..6b7e348931 100644
--- a/epan/dissectors/packet-laplink.c
+++ b/epan/dissectors/packet-laplink.c
@@ -105,7 +105,7 @@ dissect_laplink_udp(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree, void *d
proto_tree_add_item(laplink_tree, hf_laplink_udp_name, tvb, offset, -1, ENC_ASCII|ENC_NA);
}
- return tvb_length(tvb);
+ return tvb_captured_length(tvb);
}
/* Code to actually dissect the packets - TCP aspects*/
@@ -144,7 +144,7 @@ dissect_laplink_tcp_pdu(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree, voi
}
- return tvb_length(tvb);
+ return tvb_captured_length(tvb);
/* If this protocol has a sub-dissector call it here, see section 1.8 */
}
@@ -165,7 +165,7 @@ dissect_laplink_tcp(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree, void* d
tcp_dissect_pdus(tvb, pinfo, tree, laplink_desegment,
6, get_laplink_pdu_len,
dissect_laplink_tcp_pdu, data);
- return tvb_length(tvb);
+ return tvb_captured_length(tvb);
}