aboutsummaryrefslogtreecommitdiffstats
path: root/asn1/h501/packet-h501-template.c
diff options
context:
space:
mode:
authorEvan Huus <eapache@gmail.com>2014-06-19 21:41:35 -0700
committerEvan Huus <eapache@gmail.com>2014-06-20 05:33:04 +0000
commit980f5f6711ae5642adc509d9a8ee81d188f3a431 (patch)
treef4156d2827cd82a2812aadb2337fcd144a3bf5b5 /asn1/h501/packet-h501-template.c
parent45608810709251652104e32b3fd8065b0d50d0aa (diff)
batch of tvb-length conversions
Change-Id: I5e40df8af6841e3dad71c41d7e43c7971611b15f Reviewed-on: https://code.wireshark.org/review/2473 Reviewed-by: Evan Huus <eapache@gmail.com>
Diffstat (limited to 'asn1/h501/packet-h501-template.c')
-rw-r--r--asn1/h501/packet-h501-template.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/asn1/h501/packet-h501-template.c b/asn1/h501/packet-h501-template.c
index ed715533d5..ed5353a9c2 100644
--- a/asn1/h501/packet-h501-template.c
+++ b/asn1/h501/packet-h501-template.c
@@ -78,14 +78,14 @@ static int
dissect_h501_udp(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree, void *data _U_)
{
dissect_tpkt_encap(tvb, pinfo, tree, FALSE, h501_pdu_handle);
- return tvb_length(tvb);
+ return tvb_captured_length(tvb);
}
static int
dissect_h501_tcp(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree, void *data _U_)
{
dissect_tpkt_encap(tvb, pinfo, tree, h501_desegment_tcp, h501_pdu_handle);
- return tvb_length(tvb);
+ return tvb_captured_length(tvb);
}
/*--- proto_register_h501 ----------------------------------------------*/