From 6894bccf0304d4500c171960726e177a9dc41038 Mon Sep 17 00:00:00 2001 From: Martin Mathieson Date: Fri, 9 Oct 2020 21:57:59 +0100 Subject: check_tfs.py: Also match case insensitively Fix up some issues where the words were the same except for captitalisation. --- epan/dissectors/packet-netbios.c | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) (limited to 'epan/dissectors/packet-netbios.c') 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, -- cgit v1.2.3