aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-tte-pcf.c
diff options
context:
space:
mode:
authorAndersBroman <a.broman@bredband.net>2015-04-13 12:13:05 +0200
committerAnders Broman <a.broman58@gmail.com>2015-04-13 10:17:47 +0000
commitaaf347c029fd4c08881f79bb668f9f02530baf88 (patch)
treefd1a9a36ec58dcf6232964a8775f0b3feb0e65fe /epan/dissectors/packet-tte-pcf.c
parent502eef945b47e55b998d915fe853f436cec68abe (diff)
Remove deprecated API tvb_lengtRemove deprecated API tvb_length
Change-Id: Iea7dd7d13ce1a2ee375a2c4a75f897ba2c936921 Reviewed-on: https://code.wireshark.org/review/8048 Reviewed-by: Anders Broman <a.broman58@gmail.com>
Diffstat (limited to 'epan/dissectors/packet-tte-pcf.c')
-rw-r--r--epan/dissectors/packet-tte-pcf.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/epan/dissectors/packet-tte-pcf.c b/epan/dissectors/packet-tte-pcf.c
index 20d98d81ee..407c6bd81c 100644
--- a/epan/dissectors/packet-tte-pcf.c
+++ b/epan/dissectors/packet-tte-pcf.c
@@ -73,7 +73,7 @@ dissect_tte_pcf(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree)
guint8 sync_domain = 0;
/* Check that there's enough data */
- if (tvb_length(tvb) < TTE_PCF_LENGTH )
+ if (tvb_reported_length(tvb) < TTE_PCF_LENGTH )
{
return;
}