aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-m3ua.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-m3ua.c
parent38dbf79f14b15214fc62e1258f12453363be84b0 (diff)
Fix various instances of unused hf[] entries found
by checkhf. svn path=/trunk/; revision=47312
Diffstat (limited to 'epan/dissectors/packet-m3ua.c')
-rw-r--r--epan/dissectors/packet-m3ua.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/epan/dissectors/packet-m3ua.c b/epan/dissectors/packet-m3ua.c
index 4603c7a029..e4f539fef0 100644
--- a/epan/dissectors/packet-m3ua.c
+++ b/epan/dissectors/packet-m3ua.c
@@ -238,7 +238,7 @@ static int hf_parameter_tag = -1;
static int hf_parameter_length = -1;
static int hf_parameter_value = -1;
static int hf_parameter_padding = -1;
-static int hf_parameter_trailer = -1;
+/* static int hf_parameter_trailer = -1; */
static int hf_network_appearance = -1;
static int hf_info_string = -1;
static int hf_routing_context = -1;
@@ -1985,7 +1985,9 @@ proto_register_m3ua(void)
{ &hf_parameter_length, { "Parameter length", "m3ua.parameter_length", FT_UINT16, BASE_DEC, NULL, 0x0, NULL, HFILL } },
{ &hf_parameter_value, { "Parameter value", "m3ua.parameter_value", FT_BYTES, BASE_NONE, NULL, 0x0, NULL, HFILL } },
{ &hf_parameter_padding, { "Padding", "m3ua.parameter_padding", FT_BYTES, BASE_NONE, NULL, 0x0, NULL, HFILL } },
+/**
{ &hf_parameter_trailer, { "Trailer", "m3ua.paramter_trailer", FT_BYTES, BASE_NONE, NULL, 0x0, NULL, HFILL } },
+**/
{ &hf_network_appearance, { "Network appearance", "m3ua.network_appearance", FT_UINT32, BASE_DEC, NULL, 0x0, NULL, HFILL } },
{ &hf_info_string, { "Info string", "m3ua.info_string", FT_STRING, BASE_NONE, NULL, 0x0, NULL, HFILL } },
{ &hf_routing_context, { "Routing context", "m3ua.routing_context", FT_UINT32, BASE_DEC, NULL, 0x0, NULL, HFILL } },