aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-gsm_a_gm.c
diff options
context:
space:
mode:
authorPascal Quantin <pascal.quantin@gmail.com>2013-08-27 19:38:35 +0000
committerPascal Quantin <pascal.quantin@gmail.com>2013-08-27 19:38:35 +0000
commit22c55855476f34447a72f35ac888368c39a6689d (patch)
tree74edb2548b5949aee438a8bc056f265c9ea1705b /epan/dissectors/packet-gsm_a_gm.c
parent7e3922cf4320e2b581be45f3d7c7d3a7ce0c78d4 (diff)
Add a DRX subtree to GTP dissector now that the subtree (useless for NAS and EPS NAS dissectors) was removed from de_gmm_drx_param in r51537
svn path=/trunk/; revision=51541
Diffstat (limited to 'epan/dissectors/packet-gsm_a_gm.c')
-rw-r--r--epan/dissectors/packet-gsm_a_gm.c26
1 files changed, 12 insertions, 14 deletions
diff --git a/epan/dissectors/packet-gsm_a_gm.c b/epan/dissectors/packet-gsm_a_gm.c
index 737a78c82f..41a83cfa32 100644
--- a/epan/dissectors/packet-gsm_a_gm.c
+++ b/epan/dissectors/packet-gsm_a_gm.c
@@ -452,7 +452,6 @@ static gint ett_tc_err_code = -1;
static gint ett_tc_prob_code = -1;
static gint ett_tc_sequence = -1;
-static gint ett_gmm_drx = -1;
static gint ett_gmm_detach_type = -1;
static gint ett_gmm_attach_type = -1;
static gint ett_gmm_context_stat = -1;
@@ -8266,7 +8265,7 @@ proto_register_gsm_a_gm(void)
};
/* Setup protocol subtree array */
-#define NUM_INDIVIDUAL_ELEMS 19
+#define NUM_INDIVIDUAL_ELEMS 18
gint *ett[NUM_INDIVIDUAL_ELEMS +
NUM_GSM_DTAP_MSG_GMM + NUM_GSM_DTAP_MSG_SM +
NUM_GSM_GM_ELEM];
@@ -8278,18 +8277,17 @@ proto_register_gsm_a_gm(void)
ett[4] = &ett_tc_err_code;
ett[5] = &ett_tc_prob_code;
ett[6] = &ett_tc_sequence;
- ett[7] = &ett_gmm_drx;
- ett[8] = &ett_gmm_detach_type;
- ett[9] = &ett_gmm_attach_type;
- ett[10] = &ett_gmm_context_stat;
- ett[11] = &ett_gmm_update_type;
- ett[12] = &ett_gmm_radio_cap;
- ett[13] = &ett_gmm_rai;
- ett[14] = &ett_sm_tft;
- ett[15] = &ett_gmm_gprs_timer;
- ett[16] = &ett_gmm_network_cap;
- ett[17] = &ett_gsm_a_gm_msrac_multislot_capability;
- ett[18] = &ett_sm_pco;
+ ett[7] = &ett_gmm_detach_type;
+ ett[8] = &ett_gmm_attach_type;
+ ett[9] = &ett_gmm_context_stat;
+ ett[10] = &ett_gmm_update_type;
+ ett[11] = &ett_gmm_radio_cap;
+ ett[12] = &ett_gmm_rai;
+ ett[13] = &ett_sm_tft;
+ ett[14] = &ett_gmm_gprs_timer;
+ ett[15] = &ett_gmm_network_cap;
+ ett[16] = &ett_gsm_a_gm_msrac_multislot_capability;
+ ett[17] = &ett_sm_pco;
last_offset = NUM_INDIVIDUAL_ELEMS;