summaryrefslogtreecommitdiff
path: root/epan/dissectors/packet-bfd.c
diff options
context:
space:
mode:
authorStig Bjørlykke <stig@bjorlykke.org>2009-07-07 14:54:15 +0000
committerStig Bjørlykke <stig@bjorlykke.org>2009-07-07 14:54:15 +0000
commit4d8dd01e8ee52a84eab91627d4a84d252eff0699 (patch)
treecc147e3c2dfd3eac481e11d414939851ddc6574e /epan/dissectors/packet-bfd.c
parent47552ea3a4faa96f17578ff5700f3c1875f07619 (diff)
downloadwireshark-4d8dd01e8ee52a84eab91627d4a84d252eff0699.tar.gz
Changed flags_set_truth -> tfs_set_notset
svn path=/trunk/; revision=28989
Diffstat (limited to 'epan/dissectors/packet-bfd.c')
-rw-r--r--epan/dissectors/packet-bfd.c20
1 files changed, 10 insertions, 10 deletions
diff --git a/epan/dissectors/packet-bfd.c b/epan/dissectors/packet-bfd.c
index 7d564a26ac..7c9fa099e6 100644
--- a/epan/dissectors/packet-bfd.c
+++ b/epan/dissectors/packet-bfd.c
@@ -562,54 +562,54 @@ void proto_register_bfd(void)
},
{ &hf_bfd_flags_h,
{ "I hear you", "bfd.flags.h",
- FT_BOOLEAN, 8, TFS(&flags_set_truth), 0x80,
+ FT_BOOLEAN, 8, TFS(&tfs_set_notset), 0x80,
NULL, HFILL }
},
{ &hf_bfd_flags_d_v0,
{ "Demand", "bfd.flags.d",
- FT_BOOLEAN, 8, TFS(&flags_set_truth), 0x40,
+ FT_BOOLEAN, 8, TFS(&tfs_set_notset), 0x40,
NULL, HFILL }
},
{ &hf_bfd_flags_p_v0,
{ "Poll", "bfd.flags.p",
- FT_BOOLEAN, 8, TFS(&flags_set_truth), 0x20,
+ FT_BOOLEAN, 8, TFS(&tfs_set_notset), 0x20,
NULL, HFILL }
},
{ &hf_bfd_flags_f_v0,
{ "Final", "bfd.flags.f",
- FT_BOOLEAN, 8, TFS(&flags_set_truth), 0x10,
+ FT_BOOLEAN, 8, TFS(&tfs_set_notset), 0x10,
NULL, HFILL }
},
{ &hf_bfd_flags_p,
{ "Poll", "bfd.flags.p",
- FT_BOOLEAN, 6, TFS(&flags_set_truth), 0x20,
+ FT_BOOLEAN, 6, TFS(&tfs_set_notset), 0x20,
"If set, the transmitting system is expecting a packet with the Final (F) bit in reply",
HFILL }
},
{ &hf_bfd_flags_f,
{ "Final", "bfd.flags.f",
- FT_BOOLEAN, 6, TFS(&flags_set_truth), 0x10,
+ FT_BOOLEAN, 6, TFS(&tfs_set_notset), 0x10,
"If set, the transmitting system is replying to a packet with the Poll (P) bit set",
HFILL }
},
{ &hf_bfd_flags_c,
{ "Control Plane Independent", "bfd.flags.c",
- FT_BOOLEAN, 6, TFS(&flags_set_truth), 0x08,
+ FT_BOOLEAN, 6, TFS(&tfs_set_notset), 0x08,
"If set, the BFD implementation is implemented in the forwarding plane", HFILL }
},
{ &hf_bfd_flags_a,
{ "Authentication Present", "bfd.flags.a",
- FT_BOOLEAN, 6, TFS(&flags_set_truth), 0x04,
+ FT_BOOLEAN, 6, TFS(&tfs_set_notset), 0x04,
"The Authentication Section is present", HFILL }
},
{ &hf_bfd_flags_d,
{ "Demand", "bfd.flags.d",
- FT_BOOLEAN, 6, TFS(&flags_set_truth), 0x02,
+ FT_BOOLEAN, 6, TFS(&tfs_set_notset), 0x02,
"If set, Demand mode is active in the transmitting system", HFILL }
},
{ &hf_bfd_flags_m,
{ "Multipoint", "bfd.flags.m",
- FT_BOOLEAN, 6, TFS(&flags_set_truth), 0x01,
+ FT_BOOLEAN, 6, TFS(&tfs_set_notset), 0x01,
"Reserved for future point-to-multipoint extensions", HFILL }
},
{ &hf_bfd_detect_time_multiplier,