aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-gsm_a_rr.c
diff options
context:
space:
mode:
authordimeg <dimeg@f5534014-38df-0310-8fa8-9805f1628bb7>2009-11-14 20:13:43 +0000
committerdimeg <dimeg@f5534014-38df-0310-8fa8-9805f1628bb7>2009-11-14 20:13:43 +0000
commit4ced44bfc9221d5508491f0bd83807a5128e878a (patch)
tree46f8b3fb06f393d6cc6ee0bc58816df0ba5e28b5 /epan/dissectors/packet-gsm_a_rr.c
parent3298c66915e2f99e390caa7da3b4941790450929 (diff)
From yy:
About GSM system information type 2quater Modified to use newly defined tvb_get_bits() in tvbuff.c https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=4219 git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@30962 f5534014-38df-0310-8fa8-9805f1628bb7
Diffstat (limited to 'epan/dissectors/packet-gsm_a_rr.c')
-rw-r--r--epan/dissectors/packet-gsm_a_rr.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/epan/dissectors/packet-gsm_a_rr.c b/epan/dissectors/packet-gsm_a_rr.c
index cc6f332d00..7945c051b5 100644
--- a/epan/dissectors/packet-gsm_a_rr.c
+++ b/epan/dissectors/packet-gsm_a_rr.c
@@ -1179,7 +1179,7 @@ de_rr_cell_select_indic(tvbuff_t *tvb, proto_tree *tree, guint32 offset, guint l
while (idx > 0)
{
- w[i] = tvb_get_bits16(tvb, bit_offset, wsize, FALSE);
+ w[i] = tvb_get_bits(tvb, bit_offset, wsize, FALSE);
bit_offset += wsize;
idx -= wsize;
if (w[i] == 0)
@@ -1265,7 +1265,7 @@ de_rr_cell_select_indic(tvbuff_t *tvb, proto_tree *tree, guint32 offset, guint l
while (idx > 0)
{
- w[i] = tvb_get_bits16(tvb, bit_offset, wsize, FALSE);
+ w[i] = tvb_get_bits(tvb, bit_offset, wsize, FALSE);
bit_offset += wsize;
idx -= wsize;
if (w[i] == 0)
@@ -4112,7 +4112,7 @@ de_rr_si2quater_meas_info_utran_fdd_desc(tvbuff_t *tvb, proto_tree *tree, gint b
while (idx > 0)
{
- w[i] = tvb_get_bits16(tvb, curr_bit_offset, wsize, FALSE);
+ w[i] = tvb_get_bits(tvb, curr_bit_offset, wsize, FALSE);
curr_bit_offset += wsize;
idx -= wsize;
if (w[i] == 0)
@@ -4201,7 +4201,7 @@ de_rr_si2quater_meas_info_utran_tdd_desc(tvbuff_t *tvb, proto_tree *tree, gint b
while (idx > 0)
{
- w[i] = tvb_get_bits16(tvb, curr_bit_offset, wsize, FALSE);
+ w[i] = tvb_get_bits(tvb, curr_bit_offset, wsize, FALSE);
curr_bit_offset += wsize;
idx -= wsize;
if (w[i] == 0)