aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-cmpp.c
diff options
context:
space:
mode:
authorwmeier <wmeier@f5534014-38df-0310-8fa8-9805f1628bb7>2009-05-08 20:35:57 +0000
committerwmeier <wmeier@f5534014-38df-0310-8fa8-9805f1628bb7>2009-05-08 20:35:57 +0000
commit89053006fe7a33f62d82daa1be18402a671ee2b0 (patch)
tree2d0296ba3718791c267604d1ec87026fed0d13b5 /epan/dissectors/packet-cmpp.c
parent1f22604d223fa1048e9a7740b68c6207408331a3 (diff)
FT_BOOLEAN fields w/o bitmasks really should use BASE_NONE (not BASE_DEC,...).
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@28317 f5534014-38df-0310-8fa8-9805f1628bb7
Diffstat (limited to 'epan/dissectors/packet-cmpp.c')
-rw-r--r--epan/dissectors/packet-cmpp.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/epan/dissectors/packet-cmpp.c b/epan/dissectors/packet-cmpp.c
index aef410ce2a..81c5bb8fb4 100644
--- a/epan/dissectors/packet-cmpp.c
+++ b/epan/dissectors/packet-cmpp.c
@@ -774,7 +774,7 @@ proto_register_cmpp(void) {
},
{ &hf_cmpp_submit_Registered_Delivery,
{ "Registered Delivery", "cmpp.submit.Registered_Delivery",
- FT_BOOLEAN, BASE_DEC, NULL, 0x00,
+ FT_BOOLEAN, BASE_NONE, NULL, 0x00,
"Registered Delivery flag",
HFILL }
},
@@ -804,7 +804,7 @@ proto_register_cmpp(void) {
},
{ &hf_cmpp_submit_Fee_terminal_type,
{ "Fake Fee Terminal", "cmpp.submit.Fee_terminal_type",
- FT_BOOLEAN, BASE_DEC, NULL, 0x00,
+ FT_BOOLEAN, BASE_NONE, NULL, 0x00,
"Fee terminal type, 0 is real, 1 is fake",
HFILL }
},
@@ -876,7 +876,7 @@ proto_register_cmpp(void) {
},
{ &hf_cmpp_submit_Dest_terminal_type,
{ "Fake Destination Terminal", "cmpp.submit.Dest_terminal_type",
- FT_BOOLEAN, BASE_DEC, NULL, 0x00,
+ FT_BOOLEAN, BASE_NONE, NULL, 0x00,
"destination terminal type, 0 is real, 1 is fake",
HFILL }
},
@@ -918,13 +918,13 @@ proto_register_cmpp(void) {
},
{ &hf_cmpp_deliver_Src_terminal_type,
{ "Fake source terminal type", "cmpp.deliver.Src_terminal_type",
- FT_BOOLEAN, BASE_DEC, NULL, 0x00,
+ FT_BOOLEAN, BASE_NONE, NULL, 0x00,
"Type of the source terminal, can be 0 (real) or 1 (fake)",
HFILL }
},
{ &hf_cmpp_deliver_Registered_Delivery,
{ "Deliver Report", "cmpp.deliver.Registered_Delivery",
- FT_BOOLEAN, BASE_DEC, NULL, 0x00,
+ FT_BOOLEAN, BASE_NONE, NULL, 0x00,
"The message is a deliver report if this value = 1",
HFILL }
},