aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAlexis La Goutte <alexis.lagoutte@gmail.com>2016-02-20 13:57:21 +0100
committerMichael Mann <mmann78@netscape.net>2016-02-20 16:40:22 +0000
commit0e8dc993d8828e11859be631c0ae74ff9795428b (patch)
treeea960adb4cea86ccb827f46fa287110f0615febf
parent3b644a75c9530b8fc60e2fa964dfb2ae327e240d (diff)
MIH: fix exists multiple times with NOT compatible types
'mih.tlv_length' exists multiple times with NOT compatible types: FT_UINT64 and FT_UINT8 'mih.mihf_id' exists multiple times with NOT compatible types: FT_ETHER and FT_STRING 'mih.mihf_id' exists multiple times with NOT compatible types: FT_IPv4 and FT_ETHER 'mih.mihf_id' exists multiple times with NOT compatible types: FT_IPv6 and FT_IPv4 Change-Id: Ib4be551920c7389100ece668e1af288a7d712725 Reviewed-on: https://code.wireshark.org/review/14027 Reviewed-by: Michael Mann <mmann78@netscape.net>
-rw-r--r--epan/dissectors/packet-mih.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/epan/dissectors/packet-mih.c b/epan/dissectors/packet-mih.c
index dd0a894ef1..31c7a89e88 100644
--- a/epan/dissectors/packet-mih.c
+++ b/epan/dissectors/packet-mih.c
@@ -2415,7 +2415,7 @@ void proto_register_mih(void)
&hf_mih_type_length_ext,
{
"MIH TLV length",
- "mih.tlv_length",
+ "mih.tlv_length_ext",
FT_UINT64,
BASE_DEC,
NULL,
@@ -2439,7 +2439,7 @@ void proto_register_mih(void)
&hf_mihf_id_mac,
{
"MIHF_ID",
- "mih.mihf_id",
+ "mih.mihf_id.mac",
FT_ETHER,
BASE_NONE,
NULL,
@@ -2451,7 +2451,7 @@ void proto_register_mih(void)
&hf_mihf_id_ipv4,
{
"MIHF_ID",
- "mih.mihf_id",
+ "mih.mihf_id.ipv4",
FT_IPv4,
BASE_NONE,
NULL,
@@ -2463,7 +2463,7 @@ void proto_register_mih(void)
&hf_mihf_id_ipv6,
{
"MIHF_ID",
- "mih.mihf_id",
+ "mih.mihf_id.ipv6",
FT_IPv6,
BASE_NONE,
NULL,