aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-zbee-zcl-se.c
diff options
context:
space:
mode:
authorJoão Valverde <j@v6e.pt>2023-09-21 18:38:47 +0100
committerJoão Valverde <j@v6e.pt>2023-09-22 12:19:55 +0000
commit78547a149f6cf5f26eb18c26964804f1fa7a4a1b (patch)
tree90c95a3065de3daa2e9713b0fad380111c7a70c0 /epan/dissectors/packet-zbee-zcl-se.c
parentfad2c1e3be0dcf43674858cd662e47ec84789395 (diff)
Make tfs_true_false the default for booleans
Instead of adding a TFS(&tfs_true_false) to every boolean field, make it the default if "strings" is NULL. This seems to match the already existing documentation: If the Boolean field is to be displayed as "False" or "True", the 'strings' field would be set to NULL.
Diffstat (limited to 'epan/dissectors/packet-zbee-zcl-se.c')
-rw-r--r--epan/dissectors/packet-zbee-zcl-se.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/epan/dissectors/packet-zbee-zcl-se.c b/epan/dissectors/packet-zbee-zcl-se.c
index d91e862f36..e31f28a3c7 100644
--- a/epan/dissectors/packet-zbee-zcl-se.c
+++ b/epan/dissectors/packet-zbee-zcl-se.c
@@ -8985,7 +8985,7 @@ proto_register_zbee_zcl_tun(void)
0x00, NULL, HFILL } },
{ &hf_zbee_zcl_tun_flow_control_support,
- { "Flow Control Supported", "zbee_zcl_se.tun.flow_control_supported", FT_BOOLEAN, 8, TFS(&tfs_true_false),
+ { "Flow Control Supported", "zbee_zcl_se.tun.flow_control_supported", FT_BOOLEAN, 8, NULL,
0x00, NULL, HFILL } },
{ &hf_zbee_zcl_tun_max_in_size,
@@ -9017,7 +9017,7 @@ proto_register_zbee_zcl_tun(void)
0x00, NULL, HFILL } },
{ &hf_zbee_zcl_tun_protocol_list_complete,
- { "List Complete", "zbee_zcl_se.tun.protocol_list_complete", FT_BOOLEAN, 8, TFS(&tfs_true_false),
+ { "List Complete", "zbee_zcl_se.tun.protocol_list_complete", FT_BOOLEAN, 8, NULL,
0x00, NULL, HFILL } },
};