diff options
author | Vadim Yanitskiy <vyanitskiy@sysmocom.de> | 2020-10-29 08:25:05 +0700 |
---|---|---|
committer | Pascal Quantin <pascal@wireshark.org> | 2020-10-29 11:43:15 +0100 |
commit | c3a56789b6e90d0e9fc719cb873da16115f94503 (patch) | |
tree | b69744925febf7d4cc57863654e8834f50eb8cc8 | |
parent | 128a6db9717f3030cb354e4e4f2f37f11b616a5a (diff) | |
download | wireshark-master-3.0.tar.gz wireshark-master-3.0.tar.bz2 wireshark-master-3.0.zip |
GSM A RR: fix wrong cause value in gsm_a_rr_RR_cause_valsmaster-3.0
Also, take a chance to correct the comment: section 6.11.0 does
not exit in 3GPP TS 44.018. In version 15.4.0 Release 15 of
the referenced document it is 10.5.2.31 (table 10.5.2.31.1).
(cherry picked from commit 732591237bd3121fc0e5586f36700eff7d6c0b7f)
Conflicts:
epan/dissectors/packet-gsm_a_rr.c
-rw-r--r-- | epan/dissectors/packet-gsm_a_rr.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/epan/dissectors/packet-gsm_a_rr.c b/epan/dissectors/packet-gsm_a_rr.c index 9bed268aa5..b87a6fe466 100644 --- a/epan/dissectors/packet-gsm_a_rr.c +++ b/epan/dissectors/packet-gsm_a_rr.c @@ -400,7 +400,7 @@ const value_string gsm_rr_rest_octets_elem_strings[] = { }; -/* RR cause value (octet 2) TS 44.018 6.11.0*/ +/* RR cause value (octet 2) 3GPP TS 24.018, section 10.5.2.31 */ static const value_string gsm_a_rr_RR_cause_vals[] = { { 0, "Normal event"}, { 1, "Abnormal release, unspecified"}, @@ -412,7 +412,7 @@ static const value_string gsm_a_rr_RR_cause_vals[] = { { 8, "Handover impossible, timing advance out of range"}, { 9, "Channel mode unacceptable"}, { 10, "Frequency not implemented"}, - { 13, "Originator or talker leaving group call area"}, + { 11, "Originator or talker leaving group call area"}, { 12, "Lower layer failure"}, { 0x41, "Call already cleared"}, { 0x5f, "Semantically incorrect message"}, |