aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-gsm_a_common.c
diff options
context:
space:
mode:
authorStig Bjørlykke <stig@bjorlykke.org>2009-10-05 16:33:41 +0000
committerStig Bjørlykke <stig@bjorlykke.org>2009-10-05 16:33:41 +0000
commit0488967f29deb15cee07c70954810a3c70a90995 (patch)
tree7acac1557149fb1f2749f6fc36986e54efc88338 /epan/dissectors/packet-gsm_a_common.c
parent41a8561936c2698f0ad4d54497802e2b5ac7aa07 (diff)
Corrected check for dtmEgprsHighMultiSlotClassPresent.
svn path=/trunk/; revision=30331
Diffstat (limited to 'epan/dissectors/packet-gsm_a_common.c')
-rw-r--r--epan/dissectors/packet-gsm_a_common.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/epan/dissectors/packet-gsm_a_common.c b/epan/dissectors/packet-gsm_a_common.c
index 5d73625815..cc01448f17 100644
--- a/epan/dissectors/packet-gsm_a_common.c
+++ b/epan/dissectors/packet-gsm_a_common.c
@@ -2599,7 +2599,7 @@ de_ms_cm_3(tvbuff_t *tvb, proto_tree *tree, guint32 offset, guint len, gchar *ad
bit_offset = bit_offset + 1;
/* Extract DTM EGPRS High Multi Slot Class */
- if (dtmEgprsMultiSlotClassPresent == 1)
+ if (dtmEgprsHighMultiSlotClassPresent == 1)
{
proto_tree_add_bits_item(tree, hf_gsm_a_dtm_egprs_high_multi_slot_class, tvb, bit_offset, 3, FALSE);
bit_offset = bit_offset + 3;