summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPascal Quantin <pascal.quantin@gmail.com>2015-10-16 16:22:07 +0200
committerPascal Quantin <pascal.quantin@gmail.com>2015-10-16 15:29:43 +0000
commit5fb38a30f8a6d913042c4b20948f6370f105f29e (patch)
treef75b5016938cbc68f5ac5267a62fa41dded4f930
parent8eb4b3119fbaa9e1fe2ef12205642739dbed8dc4 (diff)
downloadwireshark-5fb38a30f8a6d913042c4b20948f6370f105f29e.tar.gz
GSM: fix dissection of additional access technology type
Bug: 11599 Change-Id: I80e92eefd233ad7939f8fdf684727164bd89abf4 Reviewed-on: https://code.wireshark.org/review/11094 Petri-Dish: Pascal Quantin <pascal.quantin@gmail.com> Tested-by: Petri Dish Buildbot <buildbot-no-reply@wireshark.org> Reviewed-by: Pascal Quantin <pascal.quantin@gmail.com> (cherry picked from commit b737d7e1b888a06891f6bd78aa58e62f77fb3f94) Reviewed-on: https://code.wireshark.org/review/11098
-rw-r--r--epan/dissectors/packet-gsm_a_gm.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/epan/dissectors/packet-gsm_a_gm.c b/epan/dissectors/packet-gsm_a_gm.c
index 342e8fdade..56da1c38f6 100644
--- a/epan/dissectors/packet-gsm_a_gm.c
+++ b/epan/dissectors/packet-gsm_a_gm.c
@@ -1514,7 +1514,7 @@ de_gmm_ms_radio_acc_cap(tvbuff_t *tvb, proto_tree *tree, packet_info *pinfo, gui
acc_type = oct>>(32-bits_needed);
- proto_tree_add_bits_item(tf_tree, hf_gsm_a_gm_acc_cap_struct_len, tvb, bit_offset, 7, ENC_BIG_ENDIAN);
+ proto_tree_add_bits_item(tf_tree, hf_gsm_a_gm_acc_tech_type, tvb, bit_offset, 4, ENC_BIG_ENDIAN);
bit_offset += 4;
curr_bits_length -= bits_needed;