Fix copy paste errors

svn path=/trunk/; revision=52823
This commit is contained in:
Pascal Quantin 2013-10-24 21:11:00 +00:00
parent bc8006b224
commit 39fd5f29af
2 changed files with 4 additions and 10 deletions

View File

@ -995,12 +995,10 @@ static const true_false_string gsm_a_gmm_net_cap_smgprs_vals = {
"Mobile station does not support mobile terminated point to point SMS via GPRS packet data channels"
};
#if 0
static const true_false_string gsm_a_gmm_net_cap_ucs2_vals = {
"The ME has no preference between the use of the default alphabet and the use of UCS2",
"The ME has a preference for the default alphabet (defined in 3GPP TS 23.038 [8b]) over UCS2"
};
#endif
static const value_string gsm_a_gmm_net_cap_ss_scr_ind_vals[]={
{ 0x00, "Default value of phase 1" },
@ -7719,7 +7717,7 @@ proto_register_gsm_a_gm(void)
},
{ &hf_gsm_a_gmm_net_cap_ucs2,
{ "UCS2 support", "gsm_a.gm.gmm.net_cap.ucs2",
FT_BOOLEAN, 8, TFS(&gsm_a_gmm_net_cap_smgprs_vals), 0x10,
FT_BOOLEAN, 8, TFS(&gsm_a_gmm_net_cap_ucs2_vals), 0x10,
NULL, HFILL }
},
{ &hf_gsm_a_gmm_net_cap_ss_scr_ind,

View File

@ -4461,13 +4461,11 @@ static const value_string gsm_a_rr_cell_barr_access_vals[] = {
{ 1, "The cell is barred"},
{ 0, NULL }
};
#if 0
static const value_string gsm_a_rr_re_vals[] = {
{ 0, "Call Reestablishment allowed in the cell"},
{ 1, "Call Reestablishment not allowed in the cell"},
{ 0, NULL }
};
#endif
static guint16
de_rr_rach_ctrl_param(tvbuff_t *tvb, proto_tree *subtree, packet_info *pinfo _U_, guint32 offset, guint len _U_, gchar *add_string _U_, int string_len _U_)
@ -7555,7 +7553,6 @@ static const true_false_string gsm_a_rr_si_status_ind_value = {
"The network does not support the PACKET SI STATUS message"
};
#if 0
static const value_string gsm_a_rr_lb_ms_txpwr_max_cch_vals[] = {
{ 0, "43 dBm"},
{ 1, "41 dBm"},
@ -7591,7 +7588,6 @@ static const value_string gsm_a_rr_lb_ms_txpwr_max_cch_vals[] = {
{ 31, "5 dBm"},
{ 0, NULL }
};
#endif
static const value_string gsm_a_rr_si2n_support_vals[] = {
{ 0, "SI2n is not supported"},
@ -11476,7 +11472,7 @@ proto_register_gsm_a_rr(void)
},
{ &hf_gsm_a_rr_re,
{ "RE", "gsm_a.rr.re",
FT_BOOLEAN, 8, NULL, 0x01,
FT_UINT8, BASE_DEC, VALS(gsm_a_rr_re_vals), 0x01,
"Call re-establishment allowed (RE)", HFILL }
},
{ &hf_gsm_a_rr_acc,
@ -12130,8 +12126,8 @@ proto_register_gsm_a_rr(void)
NULL, HFILL }
},
{ &hf_gsm_a_rr_lb_ms_txpwr_max_cch,
{ "LB MS TxPwr Max CCCH", "gsm_a.rr.n_avg_i",
FT_UINT8, BASE_DEC, VALS(gsm_a_rr_n_avg_i_vals), 0x0,
{ "LB MS TxPwr Max CCCH", "gsm_a.rr.lb_ms_txpwr_max_cch",
FT_UINT8, BASE_DEC, VALS(gsm_a_rr_lb_ms_txpwr_max_cch_vals), 0x0,
"Maximum TX power level an MS is allowed to use on all other than DCS 1800 and PCS 1900 frequency bands when accessing the system until otherwise commanded (LB MS TxPwr Max CCCH)", HFILL }
},
{ &hf_gsm_a_rr_si2n_support,