summaryrefslogtreecommitdiff
path: root/epan/dissectors/packet-cmpp.c
diff options
context:
space:
mode:
authorBill Meier <wmeier@newsguy.com>2009-05-08 20:35:57 +0000
committerBill Meier <wmeier@newsguy.com>2009-05-08 20:35:57 +0000
commit79a1441582cca7565891d7b2d8a133049350ae0b (patch)
tree2d0296ba3718791c267604d1ec87026fed0d13b5 /epan/dissectors/packet-cmpp.c
parent10bb70f09d0f21ff3e8f2e3f3558e7a3645069e6 (diff)
downloadwireshark-79a1441582cca7565891d7b2d8a133049350ae0b.tar.gz
FT_BOOLEAN fields w/o bitmasks really should use BASE_NONE (not BASE_DEC,...).
svn path=/trunk/; revision=28317
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 }
},