aboutsummaryrefslogtreecommitdiffstats
path: root/epan
diff options
context:
space:
mode:
authorMichael Mann <mmann78@netscape.net>2016-02-21 14:24:11 -0500
committerMichael Mann <mmann78@netscape.net>2016-02-22 13:32:01 +0000
commitd1f5b376fa1309fc1fed66ee5a8cad0b9ad5d7aa (patch)
tree23d52cf75f3874e33c73bf2c7959279088f54b46 /epan
parent7e55f4102cd91497713daabff10f2acd006e7299 (diff)
Resolve hf_ field name conflicts with protocol strings.
Change-Id: Ie719e2f14c6eaf536035ab30dcb40e91c431c6e4 Reviewed-on: https://code.wireshark.org/review/14061 Petri-Dish: Michael Mann <mmann78@netscape.net> Reviewed-by: Alexis La Goutte <alexis.lagoutte@gmail.com> Tested-by: Petri Dish Buildbot <buildbot-no-reply@wireshark.org> Reviewed-by: Michael Mann <mmann78@netscape.net>
Diffstat (limited to 'epan')
-rw-r--r--epan/dissectors/packet-btatt.c2
-rw-r--r--epan/dissectors/packet-c15ch.c10
-rw-r--r--epan/dissectors/packet-http-urlencoded.c8
-rw-r--r--epan/dissectors/packet-infiniband_sdp.c8
-rw-r--r--epan/dissectors/packet-iser.c7
-rw-r--r--epan/dissectors/packet-rpcrdma.c8
6 files changed, 5 insertions, 38 deletions
diff --git a/epan/dissectors/packet-btatt.c b/epan/dissectors/packet-btatt.c
index f6a49dc36c..ceaee02f0f 100644
--- a/epan/dissectors/packet-btatt.c
+++ b/epan/dissectors/packet-btatt.c
@@ -11809,7 +11809,7 @@ proto_register_btgatt(void)
NULL, HFILL}
},
{&hf_gatt_nordic_dfu_packet,
- {"Packet", "btgatt.nordic.dfu.packet",
+ {"Packet", "btgatt.nordic.dfu.packet.data",
FT_BYTES, BASE_NONE, NULL, 0x0,
NULL, HFILL}
},
diff --git a/epan/dissectors/packet-c15ch.c b/epan/dissectors/packet-c15ch.c
index 1fbbc1c14e..f72050ab15 100644
--- a/epan/dissectors/packet-c15ch.c
+++ b/epan/dissectors/packet-c15ch.c
@@ -86,7 +86,6 @@ static int proto_c15ch = -1;
static dissector_table_t c15ch_dissector_table;
/* Fields */
-static int hf_c15ch = -1;
static int hf_c15ch_version = -1;
static int hf_c15ch_msgtype = -1;
static int hf_c15ch_size = -1;
@@ -4202,7 +4201,6 @@ static int dissect_c15ch_hbeat(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tr
static int dissect_c15ch(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree, void *data _U_)
{
proto_item * ti = NULL;
- proto_item * t_extra = NULL;
proto_tree * c15ch_tree = NULL;
proto_tree * src_ni_tn_tree = NULL;
proto_tree * dest_ni_tn_tree = NULL;
@@ -4233,8 +4231,6 @@ static int dissect_c15ch(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree, vo
proto_item_append_text(ti, ", Type: %s",
val_to_str_ext(msg_type, &c15_msg_types_ext, "Unknown Type: %d"));
c15ch_tree = proto_item_add_subtree(ti, ett_c15ch);
- t_extra = proto_tree_add_item(c15ch_tree, hf_c15ch, tvb, 0, -1, ENC_NA);
- PROTO_ITEM_SET_HIDDEN( t_extra ); /* allow filtering on "c15" but do not display in tree */
proto_tree_add_item(c15ch_tree, hf_c15ch_version, tvb, 0, 4, ENC_BIG_ENDIAN);
proto_tree_add_item(c15ch_tree, hf_c15ch_msgtype, tvb, 4, 4, ENC_BIG_ENDIAN);
proto_tree_add_item(c15ch_tree, hf_c15ch_size, tvb, 8, 4, ENC_BIG_ENDIAN);
@@ -7459,12 +7455,6 @@ void proto_register_c15ch(void)
/* fields for C15 header : base c15 dissector for non-heartbeat packets */
/* first level of dissection */
static hf_register_info hf[] = {
- { &hf_c15ch,
- {"C15 Call History", "c15",
- FT_NONE, BASE_NONE,
- NULL,
- 0x0, NULL, HFILL }
- },
{ &hf_c15ch_version,
{"Version", "c15.ch.version",
FT_UINT32, BASE_DEC,
diff --git a/epan/dissectors/packet-http-urlencoded.c b/epan/dissectors/packet-http-urlencoded.c
index 5b09d461d5..aca2185aaa 100644
--- a/epan/dissectors/packet-http-urlencoded.c
+++ b/epan/dissectors/packet-http-urlencoded.c
@@ -36,9 +36,6 @@ static header_field_info *hfi_urlencoded = NULL;
#define URLENCODED_HFI_INIT HFI_INIT(proto_urlencoded)
-static header_field_info hfi_form_keyvalue URLENCODED_HFI_INIT =
- { "Form item", "urlencoded-form", FT_NONE, BASE_NONE, NULL, 0x0, NULL, HFILL };
-
static header_field_info hfi_form_key URLENCODED_HFI_INIT =
{ "Key", "urlencoded-form.key", FT_STRINGZ, BASE_NONE, NULL, 0x0, NULL, HFILL };
@@ -153,9 +150,7 @@ dissect_form_urlencoded(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree, voi
const int start_offset = offset;
char *key, *value;
- ti = proto_tree_add_item(url_tree, &hfi_form_keyvalue, tvb, offset, 0, ENC_NA);
-
- sub = proto_item_add_subtree(ti, ett_form_keyvalue);
+ sub = proto_tree_add_subtree(url_tree, tvb, offset, 0, ett_form_keyvalue, &ti, "Form item");
next_offset = get_form_key_value(tvb, &key, offset, '=');
if (next_offset == -1)
@@ -184,7 +179,6 @@ proto_register_http_urlencoded(void)
{
#ifndef HAVE_HFI_SECTION_INIT
static header_field_info *hfi[] = {
- &hfi_form_keyvalue,
&hfi_form_key,
&hfi_form_value,
};
diff --git a/epan/dissectors/packet-infiniband_sdp.c b/epan/dissectors/packet-infiniband_sdp.c
index 014e0ea970..ecf6018894 100644
--- a/epan/dissectors/packet-infiniband_sdp.c
+++ b/epan/dissectors/packet-infiniband_sdp.c
@@ -46,8 +46,6 @@ static int proto_infiniband = -1; /* we'll need the Infiniband protocol index
/* Initialize the protocol and registered fields... */
static int proto_ib_sdp = -1;
-static int hf_ib_sdp = -1;
-
/* IB SDP BSDH Header */
static int hf_ib_sdp_bsdh = -1;
static int hf_ib_sdp_mid = -1;
@@ -222,7 +220,7 @@ manual_override:
col_set_str(pinfo->cinfo, COL_PROTOCOL, "SDP");
- SDP_header_item = proto_tree_add_item(tree, hf_ib_sdp, tvb, local_offset, -1, ENC_NA);
+ SDP_header_item = proto_tree_add_item(tree, proto_ib_sdp, tvb, local_offset, -1, ENC_NA);
SDP_header_tree = proto_item_add_subtree(SDP_header_item, ett_ib_sdp);
SDP_BSDH_header_item = proto_tree_add_item(SDP_header_tree, hf_ib_sdp_bsdh, tvb, local_offset, 16, ENC_NA);
@@ -321,10 +319,6 @@ proto_register_ib_sdp(void)
{
module_t *ib_sdp_module;
static hf_register_info hf[] = {
- { &hf_ib_sdp, {
- "SDP", "infiniband_sdp",
- FT_NONE, BASE_NONE, NULL, 0x0, NULL, HFILL}
- },
/* SDP BSDH Header */
{ &hf_ib_sdp_bsdh, {
"BSDH", "infiniband_sdp.bsdh",
diff --git a/epan/dissectors/packet-iser.c b/epan/dissectors/packet-iser.c
index 5dc88df529..9e577e9082 100644
--- a/epan/dissectors/packet-iser.c
+++ b/epan/dissectors/packet-iser.c
@@ -70,7 +70,6 @@ static dissector_handle_t ib_handler;
static int proto_ib = -1;
/* iSER Header */
-static int hf_iser = -1;
static int hf_iser_flags = -1;
static int hf_iser_opcode_f = -1;
static int hf_iser_RSV_f = -1;
@@ -183,7 +182,7 @@ static int dissect_packet(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree)
if (tree) {
/* create display subtree for the protocol */
- ti = proto_tree_add_item(tree, hf_iser, tvb, 0, ISER_HDR_SZ, ENC_NA);
+ ti = proto_tree_add_item(tree, proto_iser, tvb, 0, ISER_HDR_SZ, ENC_NA);
iser_tree = proto_item_add_subtree(ti, ett_iser);
@@ -291,10 +290,6 @@ proto_register_iser(void)
{
module_t *iser_module;
static hf_register_info hf[] = {
- { &hf_iser, {
- "iSER", "iser",
- FT_NONE, BASE_NONE, NULL, 0x0, NULL, HFILL}
- },
{ &hf_iser_flags,
{ "Flags", "iser.flags",
FT_UINT8, BASE_HEX, NULL, 0x0, NULL, HFILL}
diff --git a/epan/dissectors/packet-rpcrdma.c b/epan/dissectors/packet-rpcrdma.c
index b26f8910bd..51e7b9e891 100644
--- a/epan/dissectors/packet-rpcrdma.c
+++ b/epan/dissectors/packet-rpcrdma.c
@@ -60,7 +60,6 @@ static dissector_handle_t rpcordma_handler;
static int proto_ib = -1;
/* RPCoRDMA Header */
-static int hf_rpcordma = -1;
static int hf_rpcordma_xid = -1;
static int hf_rpcordma_vers = -1;
static int hf_rpcordma_flow_control = -1;
@@ -303,7 +302,7 @@ dissect_packet(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree)
if (tree) {
/* create display subtree for the protocol */
- ti = proto_tree_add_item(tree, hf_rpcordma, tvb, 0, MIN_RPCRDMA_HDR_SZ, ENC_NA);
+ ti = proto_tree_add_item(tree, proto_rpcordma, tvb, 0, MIN_RPCRDMA_HDR_SZ, ENC_NA);
rpcordma_tree = proto_item_add_subtree(ti, ett_rpcordma);
@@ -449,11 +448,6 @@ proto_register_rpcordma(void)
{
module_t *rpcordma_module;
static hf_register_info hf[] = {
- { &hf_rpcordma,
- { "RPCoRDMA", "rpcordma",
- FT_NONE, BASE_NONE,
- NULL, 0x0, NULL, HFILL}
- },
{ &hf_rpcordma_xid,
{ "XID", "rpcordma.xid",
FT_UINT32, BASE_HEX,