aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-gsm_a_bssmap.c
diff options
context:
space:
mode:
authoretxrab <etxrab@f5534014-38df-0310-8fa8-9805f1628bb7>2011-03-06 09:42:41 +0000
committeretxrab <etxrab@f5534014-38df-0310-8fa8-9805f1628bb7>2011-03-06 09:42:41 +0000
commit931a7496fa901d0349287344d3c737b608f10a75 (patch)
treef772851978f15391b92379cb48927a317309fc31 /epan/dissectors/packet-gsm_a_bssmap.c
parent30483095bd228b5cc5779df9deda9e276d7f380e (diff)
Prepare to remove old bssgp code by changing exports.
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@36142 f5534014-38df-0310-8fa8-9805f1628bb7
Diffstat (limited to 'epan/dissectors/packet-gsm_a_bssmap.c')
-rw-r--r--epan/dissectors/packet-gsm_a_bssmap.c11
1 files changed, 1 insertions, 10 deletions
diff --git a/epan/dissectors/packet-gsm_a_bssmap.c b/epan/dissectors/packet-gsm_a_bssmap.c
index 4bbdca4446..d192c0e5ce 100644
--- a/epan/dissectors/packet-gsm_a_bssmap.c
+++ b/epan/dissectors/packet-gsm_a_bssmap.c
@@ -4102,21 +4102,12 @@ static guint16
be_fe_gprs_suspend_info(tvbuff_t *tvb, proto_tree *tree, guint32 offset, guint len _U_, gchar *add_string _U_, int string_len _U_)
{
guint32 curr_offset = offset;
- build_info_t bi;
/* This Field Element contains the contents of the Gb interface SUSPEND ACK PDU,
Call the BSSGP dissector here, assuming that the encoding is per 48.018 */
- bi.tvb = tvb;
- bi.offset = offset;
- bi.pinfo = g_pinfo;
- bi.bssgp_tree = tree;
- bi.parent_tree = g_tree;
- bi.dl_data = TRUE;
- bi.ul_data = FALSE;
- bi.pdutype = 0x0c; /* BSSGP_PDU_SUSPEND_ACK */
- decode_pdu_suspend_ack(&bi);
+ bssgp_suspend_ack(tvb, tree, offset, len);
curr_offset += len;
return(curr_offset - offset);