aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-dvb-ipdc.c
diff options
context:
space:
mode:
authorBill Meier <wmeier@newsguy.com>2013-01-31 17:55:31 +0000
committerBill Meier <wmeier@newsguy.com>2013-01-31 17:55:31 +0000
commitc439b805e20dd9dba744b3f7216c970c3591592e (patch)
tree290b43c090c6a125c690e472152e5f89f2538647 /epan/dissectors/packet-dvb-ipdc.c
parent8ee3809edcc3a78004db5e3fad9808e1aded4838 (diff)
Comment out unused hf[] entries & etc.
(found by checkhf) svn path=/trunk/; revision=47389
Diffstat (limited to 'epan/dissectors/packet-dvb-ipdc.c')
-rw-r--r--epan/dissectors/packet-dvb-ipdc.c6
1 files changed, 5 insertions, 1 deletions
diff --git a/epan/dissectors/packet-dvb-ipdc.c b/epan/dissectors/packet-dvb-ipdc.c
index d400f30fbb..c24dd73a23 100644
--- a/epan/dissectors/packet-dvb-ipdc.c
+++ b/epan/dissectors/packet-dvb-ipdc.c
@@ -33,7 +33,7 @@
/* Initialize the protocol and registered fields */
static int proto_ipdc = -1;
-static int hf_ipdc_esg_bootstrap_xml = -1;
+/* static int hf_ipdc_esg_bootstrap_xml = -1; */
/* Initialize the subtree pointers */
static gint ett_ipdc = -1;
@@ -75,11 +75,13 @@ dissect_ipdc(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree)
void
proto_register_dvb_ipdc(void)
{
+#if 0
static hf_register_info hf[] = {
{&hf_ipdc_esg_bootstrap_xml,
{"ESG Provider Discovery", "ipdc.bootstrap",
FT_STRING, BASE_NONE, NULL, 0x0, "List of ESG Providers", HFILL}}
};
+#endif
static gint *ett[] = {
&ett_ipdc,
@@ -87,7 +89,9 @@ proto_register_dvb_ipdc(void)
proto_ipdc = proto_register_protocol("ETSI IPDC Bootstrap",
"ESG Bootstrap", "dvb_ipdc");
+#if 0
proto_register_field_array(proto_ipdc, hf, array_length(hf));
+#endif
proto_register_subtree_array(ett, array_length(ett));
register_dissector("dvb_ipdc", dissect_ipdc, proto_ipdc);