aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors
diff options
context:
space:
mode:
authorAymeric Moizard <amoizard@gmail.com>2019-04-10 11:21:15 +0200
committerAnders Broman <a.broman58@gmail.com>2019-04-11 07:17:58 +0000
commit4bebe9807a1761171204ad01f9d0726018cfdfb9 (patch)
treede0e4f5bb227db5dcfe70e7c1c57a573f5873add /epan/dissectors
parentd3e7bf79dc8223e90224691d6fdc77a2e92e2ba6 (diff)
RTCP XR RR: fix dissection of timestamp field.
The current dissector doesn't display correctly the hf_rtcp_xr_timestamp field. ENC_TIME_NTP seems to be missing. Bug: 15687 Change-Id: Ie417e8a11e05e5fb842a4fb0ad5437da1f916130 Reviewed-on: https://code.wireshark.org/review/32809 Petri-Dish: Alexis La Goutte <alexis.lagoutte@gmail.com> Tested-by: Petri Dish Buildbot Reviewed-by: Anders Broman <a.broman58@gmail.com>
Diffstat (limited to 'epan/dissectors')
-rw-r--r--epan/dissectors/packet-rtcp.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/epan/dissectors/packet-rtcp.c b/epan/dissectors/packet-rtcp.c
index 4672163ae3..dfb0206dc4 100644
--- a/epan/dissectors/packet-rtcp.c
+++ b/epan/dissectors/packet-rtcp.c
@@ -2785,7 +2785,7 @@ dissect_rtcp_xr(tvbuff_t *tvb, packet_info *pinfo, int offset, proto_tree *tree,
}
case RTCP_XR_REF_TIME: {
- proto_tree_add_item(content_tree, hf_rtcp_xr_timestamp, tvb, offset, 8, ENC_BIG_ENDIAN);
+ proto_tree_add_item(content_tree, hf_rtcp_xr_timestamp, tvb, offset, 8, ENC_TIME_NTP|ENC_BIG_ENDIAN);
offset += 8;
break;
}