aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-jxta.c
diff options
context:
space:
mode:
authorBill Meier <wmeier@newsguy.com>2013-01-26 22:43:34 +0000
committerBill Meier <wmeier@newsguy.com>2013-01-26 22:43:34 +0000
commitc929e42eb41a34045bf15457b1b5175e01ae2055 (patch)
tree11c03af186546c71e579918ab9fa3c0d424071c4 /epan/dissectors/packet-jxta.c
parent38dbf79f14b15214fc62e1258f12453363be84b0 (diff)
Fix various instances of unused hf[] entries found
by checkhf. svn path=/trunk/; revision=47312
Diffstat (limited to 'epan/dissectors/packet-jxta.c')
-rw-r--r--epan/dissectors/packet-jxta.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/epan/dissectors/packet-jxta.c b/epan/dissectors/packet-jxta.c
index 8ddb9d61f0..b7785ffc5d 100644
--- a/epan/dissectors/packet-jxta.c
+++ b/epan/dissectors/packet-jxta.c
@@ -132,7 +132,7 @@ static int hf_jxta_element_type = -1;
static int hf_jxta_element_encoding = -1;
static int hf_jxta_element_content_len = -1;
static int hf_jxta_element_content_len64 = -1;
-static int hf_jxta_element_content = -1;
+/* static int hf_jxta_element_content = -1; */
/**
* JXTA Protocol subtree handles
@@ -2267,10 +2267,12 @@ void proto_register_jxta(void)
{"Element Content Length", "jxta.message.element.content.length", FT_UINT64, BASE_DEC, NULL, 0x0,
"JXTA Message Element Content Length", HFILL}
},
+/**
{&hf_jxta_element_content,
{"Element Content", "jxta.message.element.content", FT_BYTES, BASE_NONE, NULL, 0x0,
"JXTA Message Element Content", HFILL}
},
+**/
};
proto_jxta = proto_register_protocol("JXTA P2P", "JXTA", "jxta");