aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-netbios.c
diff options
context:
space:
mode:
authorMartin Mathieson <martin.mathieson@keysight.com>2020-10-09 21:57:59 +0100
committerWireshark GitLab Utility <gerald+gitlab-utility@wireshark.org>2020-10-11 18:46:31 +0000
commit6894bccf0304d4500c171960726e177a9dc41038 (patch)
tree189470ce2eb10e83d6d51e1090d49cd76ca28aa8 /epan/dissectors/packet-netbios.c
parent6af49f053710f9d0e44dbe635a47ad47d511f16d (diff)
check_tfs.py: Also match case insensitively
Fix up some issues where the words were the same except for captitalisation.
Diffstat (limited to 'epan/dissectors/packet-netbios.c')
-rw-r--r--epan/dissectors/packet-netbios.c6
1 files changed, 1 insertions, 5 deletions
diff --git a/epan/dissectors/packet-netbios.c b/epan/dissectors/packet-netbios.c
index 260c51e72e..2ef1b087a1 100644
--- a/epan/dissectors/packet-netbios.c
+++ b/epan/dissectors/packet-netbios.c
@@ -237,10 +237,6 @@ static const value_string name_types[] = {
{ 0, NULL }
};
-static const true_false_string flags_allowed = {
- "Allowed",
- "Not allowed"
-};
static const true_false_string netb_version_str = {
"2.00 or higher",
@@ -1336,7 +1332,7 @@ proto_register_netbios(void)
{ &hf_netb_flags_ack_with_data,
{ "Acknowledge with data", "netbios.flags.ack_with_data", FT_BOOLEAN, 8,
- TFS( &flags_allowed), 0x04, NULL, HFILL }},
+ TFS( &tfs_allowed_not_allowed), 0x04, NULL, HFILL }},
{ &hf_netb_flags_ack_expected,
{ "Acknowledge expected", "netbios.flags.ack_expected", FT_BOOLEAN, 8,