summaryrefslogtreecommitdiff
path: root/epan/dissectors/packet-wlccp.c
diff options
context:
space:
mode:
Diffstat (limited to 'epan/dissectors/packet-wlccp.c')
-rw-r--r--epan/dissectors/packet-wlccp.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/epan/dissectors/packet-wlccp.c b/epan/dissectors/packet-wlccp.c
index 45395e41d9..b0bef0bcea 100644
--- a/epan/dissectors/packet-wlccp.c
+++ b/epan/dissectors/packet-wlccp.c
@@ -1007,7 +1007,7 @@ dissect_wlccp(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree)
if(get_tlv_flag() || get_mic_flag())
{
- if (tvb_length_remaining(tvb,offset) < 4)
+ if (tvb_reported_length_remaining(tvb,offset) < 4)
{
/* something is wrong if the TLV flag is set and there's not enough left in the buffer */
@@ -1017,7 +1017,7 @@ dissect_wlccp(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree)
else
{
- while (tvb_length_remaining(tvb,offset) >= 4)
+ while (tvb_reported_length_remaining(tvb,offset) >= 4)
{
old_offset = offset;
offset = dissect_wlccp_tlvs(wlccp_tree, tvb, offset, 0);