aboutsummaryrefslogtreecommitdiffstats
path: root/asn1/rrc
diff options
context:
space:
mode:
authorVincent Helfre <vincent.helfre@gmx.net>2015-03-29 20:47:50 +0200
committerPascal Quantin <pascal.quantin@gmail.com>2015-03-29 18:51:12 +0000
commit8874653a1cdfc9c7486fbfcc08fb0f793516c94d (patch)
treeaf4599e1edecc785771c83f1b29a4922cae65a2d /asn1/rrc
parent606fa969ba69f11c54ff16f89d514de8a7e0b3fb (diff)
RRC: add a missing mask forgotten in gf3d1e3c
Change-Id: Ib62e15d17ea576f2180ac92d217869768225905d Reviewed-on: https://code.wireshark.org/review/7850 Reviewed-by: Pascal Quantin <pascal.quantin@gmail.com>
Diffstat (limited to 'asn1/rrc')
-rw-r--r--asn1/rrc/rrc.cnf2
1 files changed, 1 insertions, 1 deletions
diff --git a/asn1/rrc/rrc.cnf b/asn1/rrc/rrc.cnf
index 3a82e73061..1a212a3621 100644
--- a/asn1/rrc/rrc.cnf
+++ b/asn1/rrc/rrc.cnf
@@ -656,7 +656,7 @@ fp_info *fpinf ;
subtree = proto_item_add_subtree(actx->created_item, ett_rrc_ims_info);
proto_tree_add_item_ret_uint(subtree, hf_rrc_ims_info_atgw_trans_det_cont_type, imsInformation_tvb, curr_offset, 1, ENC_BIG_ENDIAN, &atgw_trans_det_cont);
curr_offset++;
- switch (atgw_trans_det_cont) {
+ switch (atgw_trans_det_cont & 0x03) {
case 0:
proto_tree_add_item(subtree, hf_rrc_ims_info_atgw_udp_port, imsInformation_tvb, curr_offset, 2, ENC_BIG_ENDIAN);
curr_offset+=2;