aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-nb_rtpmux.c
diff options
context:
space:
mode:
authorAnders Broman <anders.broman@ericsson.com>2013-02-12 16:12:03 +0000
committerAnders Broman <anders.broman@ericsson.com>2013-02-12 16:12:03 +0000
commitfe266892a700a15d1f6fb5110d4da4ae74cdbbdb (patch)
treee07bf48d177eca78ca1be65cd72d6eacea2880cd /epan/dissectors/packet-nb_rtpmux.c
parentc45252a75f4cbee0a6800ebbd1515b21eccf65dc (diff)
Even when adding a value with proto_tree_add_uint() the mask is applied to the value which may not be the optimal behavioure.
Remove the mask to get the correct value displayed. svn path=/trunk/; revision=47640
Diffstat (limited to 'epan/dissectors/packet-nb_rtpmux.c')
-rw-r--r--epan/dissectors/packet-nb_rtpmux.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/epan/dissectors/packet-nb_rtpmux.c b/epan/dissectors/packet-nb_rtpmux.c
index a844845d39..92d5bbf377 100644
--- a/epan/dissectors/packet-nb_rtpmux.c
+++ b/epan/dissectors/packet-nb_rtpmux.c
@@ -180,7 +180,7 @@ proto_register_nb_rtpmux(void)
},
{ &hf_nb_rtpmux_dstport,
{ "Dst port", "nb_rtpmux.dstport",
- FT_UINT16, BASE_DEC, NULL, 0x7FFF,
+ FT_UINT16, BASE_DEC, NULL, 0x0,
NULL, HFILL }
},
{ &hf_nb_rtpmux_length,
@@ -195,7 +195,7 @@ proto_register_nb_rtpmux(void)
},
{ &hf_nb_rtpmux_srcport,
{ "Src port", "nb_rtpmux.srcport",
- FT_UINT16, BASE_DEC, NULL, 0x7FFF,
+ FT_UINT16, BASE_DEC, NULL, 0x0,
NULL, HFILL }
},
{ &hf_nb_rtpmux_data,