aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-vxlan.c
diff options
context:
space:
mode:
authorAlexis La Goutte <alexis.lagoutte@gmail.com>2016-11-20 10:06:18 +0100
committerMichael Mann <mmann78@netscape.net>2016-11-20 13:05:31 +0000
commitded081ccecfbba91cacabba70d69a7eb36a5288d (patch)
treec5f4a65f658bdd0dad0fbdd96495298b27f3ff7a /epan/dissectors/packet-vxlan.c
parentc63609b360cf8fa3a9f86d4dcdaaada2d2be87f8 (diff)
VXLAN: Fix conflict for hf fields
'vxlan.flags_reserved' exists multiple times with NOT compatible types: FT_UINT8 and FT_BOOLEAN Change-Id: I98d296393796defc5741c41a496432eb8f927be2 Reviewed-on: https://code.wireshark.org/review/18881 Reviewed-by: Michael Mann <mmann78@netscape.net>
Diffstat (limited to 'epan/dissectors/packet-vxlan.c')
-rw-r--r--epan/dissectors/packet-vxlan.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/epan/dissectors/packet-vxlan.c b/epan/dissectors/packet-vxlan.c
index fd7239513a..e227032a40 100644
--- a/epan/dissectors/packet-vxlan.c
+++ b/epan/dissectors/packet-vxlan.c
@@ -178,7 +178,7 @@ proto_register_vxlan(void)
},
{ &hf_vxlan_flags_reserved,
{ "Reserved(R)", "vxlan.flags_reserved",
- FT_BOOLEAN, 16, NULL, 0x77b7,
+ FT_UINT16, BASE_HEX, NULL, 0x77b7,
NULL, HFILL,
},
},