aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-dvb-tdt.c
diff options
context:
space:
mode:
authorJeff Morriss <jeff.morriss@ulticom.com>2012-03-26 14:08:39 +0000
committerJeff Morriss <jeff.morriss@ulticom.com>2012-03-26 14:08:39 +0000
commitc4acc5ceccf88aff1c7dae824df8bfbf3f64c776 (patch)
tree256594a3fb2d22aa92a580600add2a965abac489 /epan/dissectors/packet-dvb-tdt.c
parent4204d39e76629c378048dd2fbe5136ab1f8a7c60 (diff)
From Guy Martin via https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=6999 :
This patch adds support for the DVB Time Offset Table and the related descriptor. It also contains the Stuffing Descriptor as an added bonus. svn path=/trunk/; revision=41766
Diffstat (limited to 'epan/dissectors/packet-dvb-tdt.c')
-rw-r--r--epan/dissectors/packet-dvb-tdt.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/epan/dissectors/packet-dvb-tdt.c b/epan/dissectors/packet-dvb-tdt.c
index 7c2cf36aee..cb05c59392 100644
--- a/epan/dissectors/packet-dvb-tdt.c
+++ b/epan/dissectors/packet-dvb-tdt.c
@@ -64,7 +64,8 @@ dissect_dvb_tdt(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree)
if (packet_mpeg_sect_mjd_to_utc_time(tvb, offset, &utc_time) < 0) {
proto_tree_add_text(dvb_tdt_tree, tvb, offset, 5, "Unparseable time");
} else {
- proto_tree_add_time_format(dvb_tdt_tree, hf_dvb_tdt_utc_time, tvb, offset, 5, &utc_time, "UTC Time : %s UTC", abs_time_to_str(&utc_time, ABSOLUTE_TIME_UTC, FALSE));
+ proto_tree_add_time_format(dvb_tdt_tree, hf_dvb_tdt_utc_time, tvb, offset, 5, &utc_time,
+ "UTC Time : %s UTC", abs_time_to_str(&utc_time, ABSOLUTE_TIME_UTC, FALSE));
}
}