aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPascal Quantin <pascal.quantin@gmail.com>2016-11-29 14:27:35 +0100
committerPascal Quantin <pascal.quantin@gmail.com>2016-11-29 13:31:53 +0000
commitf96ef34b19dd074fd013b06667e6c368fa31150c (patch)
tree1586c44041abcd64fc683291cd180da4350b9f71
parent0cb44e4277f3366234019c2f919ab1aea308822d (diff)
3GPP NAS: shorten some value_string to avoid truncation during display
Change-Id: I50f9bbec5405c17a59c5eaac9833929737b8c145 Reviewed-on: https://code.wireshark.org/review/18984 Reviewed-by: Pascal Quantin <pascal.quantin@gmail.com>
-rw-r--r--epan/dissectors/packet-gsm_a_gm.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/epan/dissectors/packet-gsm_a_gm.c b/epan/dissectors/packet-gsm_a_gm.c
index a7d383bfe2..1dfa26044d 100644
--- a/epan/dissectors/packet-gsm_a_gm.c
+++ b/epan/dissectors/packet-gsm_a_gm.c
@@ -1440,7 +1440,7 @@ static const value_string gsm_a_gm_ul_egprs2_vals[] = {
{ 0x00, "The mobile station does not support either EGPRS2-A or EGPRS2-B in the uplink" },
{ 0x01, "The mobile station supports EGPRS2-A in the uplink" },
{ 0x02, "The mobile station supports both EGPRS2-A and EGPRS2-B in the uplink" },
- { 0x03, "This value is not used in this release/version of the specifications. If received it shall be interpreted as 'The mobile station supports both EGPRS2-A and EGPRS2-B in the uplink'" },
+ { 0x03, "The mobile station supports both EGPRS2-A and EGPRS2-B in the uplink" },
{ 0, NULL }
};
@@ -1448,15 +1448,15 @@ static const value_string gsm_a_gm_dl_egprs2_vals[] = {
{ 0x00, "The mobile station does not support either EGPRS2-A or EGPRS2-B in the downlink" },
{ 0x01, "The mobile station supports EGPRS2-A in the downlink" },
{ 0x02, "The mobile station supports both EGPRS2-A and EGPRS2-B in the downlink" },
- { 0x03, "This value is not used in this release/version of the specifications. If received it shall be interpreted as 'The mobile station supports both EGPRS2-A and EGPRS2-B in the downlink'" },
+ { 0x03, "The mobile station supports both EGPRS2-A and EGPRS2-B in the downlink" },
{ 0, NULL }
};
static const value_string gsm_a_gm_geran_to_eutra_support_in_geran_ptm_vals[] = {
{ 0x00, "None" },
- { 0x01, "E-UTRAN Neighbour Cell measurements and MS autonomous cell reselection to E-UTRAN supported" },
- { 0x02, "CCN towards E-UTRAN, E-UTRAN Neighbour Cell measurement reporting and Network controlled cell reselection to E-UTRAN supported in addition to capabilities indicated by '01'" },
- { 0x03, "PS Handover to E-UTRAN supported in addition to capabilities indicated by '01' and '10'" },
+ { 0x01, "E-UTRAN neighbour cell measurements and MS autonomous cell reselection to E-UTRAN supported" },
+ { 0x02, "E-UTRAN neighbour cell meas and report, MS autonomous cell resel, CCN and network controlled cell reselection to E-UTRAN" },
+ { 0x03, "E-UTRAN neighbour cell meas and report, MS autonomous cell resel, CCN, network controlled cell reselection and PS Handover to E-UTRAN" },
{ 0, NULL }
};