aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-ip.c
diff options
context:
space:
mode:
authorBill Meier <wmeier@newsguy.com>2012-03-15 23:26:40 +0000
committerBill Meier <wmeier@newsguy.com>2012-03-15 23:26:40 +0000
commitb2102cc0928a02ef99f2116955fb8a2420cdbd73 (patch)
tree1f231d2e5187266a73413993a8846fb25685b425 /epan/dissectors/packet-ip.c
parent023545da8280041bd5dbf040a48c01f4910d0b9e (diff)
FT_BOOLEAN hf[] entries with a 0 'bitmask' should have 'display' = BASE_NONE;
svn path=/trunk/; revision=41582
Diffstat (limited to 'epan/dissectors/packet-ip.c')
-rw-r--r--epan/dissectors/packet-ip.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/epan/dissectors/packet-ip.c b/epan/dissectors/packet-ip.c
index 85051f6bdd..a9f20d1136 100644
--- a/epan/dissectors/packet-ip.c
+++ b/epan/dissectors/packet-ip.c
@@ -2329,19 +2329,19 @@ proto_register_ip(void)
NULL, 0x0, FLAGS_OFFSET_WIDTH_MSG(IP_FLAGS_WIDTH), HFILL }},
{ &hf_ip_flags_sf,
- { "Security flag", "ip.flags.sf", FT_BOOLEAN, IP_FLAGS_WIDTH,
+ { "Security flag", "ip.flags.sf", FT_BOOLEAN, BASE_NONE,
TFS(&flags_sf_set_evil), 0x0, "Security flag (RFC 3514)", HFILL }},
{ &hf_ip_flags_rf,
- { "Reserved bit", "ip.flags.rb", FT_BOOLEAN, IP_FLAGS_WIDTH,
+ { "Reserved bit", "ip.flags.rb", FT_BOOLEAN, BASE_NONE,
TFS(&tfs_set_notset), 0x0, NULL, HFILL }},
{ &hf_ip_flags_df,
- { "Don't fragment", "ip.flags.df", FT_BOOLEAN, IP_FLAGS_WIDTH,
+ { "Don't fragment", "ip.flags.df", FT_BOOLEAN, BASE_NONE,
TFS(&tfs_set_notset), 0x0, NULL, HFILL }},
{ &hf_ip_flags_mf,
- { "More fragments", "ip.flags.mf", FT_BOOLEAN, IP_FLAGS_WIDTH,
+ { "More fragments", "ip.flags.mf", FT_BOOLEAN, BASE_NONE,
TFS(&tfs_set_notset), 0x0, NULL, HFILL }},
{ &hf_ip_frag_offset,