aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-uma.c
diff options
context:
space:
mode:
authoretxrab <etxrab@f5534014-38df-0310-8fa8-9805f1628bb7>2005-10-20 15:49:03 +0000
committeretxrab <etxrab@f5534014-38df-0310-8fa8-9805f1628bb7>2005-10-20 15:49:03 +0000
commitff89a92d04b1b3d568520b752e56b54fcf63947d (patch)
tree08b90409f96fcb6df6cee7f016a12372826e0ed4 /epan/dissectors/packet-uma.c
parent610ad147b0121b8f973200c86e3e656ba535ae17 (diff)
Use the right offset when calling packet-gsm_a.c functions.
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@16276 f5534014-38df-0310-8fa8-9805f1628bb7
Diffstat (limited to 'epan/dissectors/packet-uma.c')
-rw-r--r--epan/dissectors/packet-uma.c18
1 files changed, 9 insertions, 9 deletions
diff --git a/epan/dissectors/packet-uma.c b/epan/dissectors/packet-uma.c
index 5fae498db3..ac37f3125c 100644
--- a/epan/dissectors/packet-uma.c
+++ b/epan/dissectors/packet-uma.c
@@ -896,7 +896,7 @@ dissect_uma_IE(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree, int offset)
* The rest of the IE is coded as in [TS 24.008] not including IEI and
* length, if present.(10.5.1.4)
*/
- de_mid(tvb, urr_ie_tree, offset, ie_len, NULL, 0);
+ de_mid(tvb, urr_ie_tree, ie_offset, ie_len, NULL, 0);
break;
case 2:
@@ -925,7 +925,7 @@ dissect_uma_IE(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree, int offset)
* The rest of the IE is coded as in [TS 24.008] not including IEI and
* length, if present.
*/
- de_lai(tvb, urr_ie_tree, offset, ie_len, NULL, 0);
+ de_lai(tvb, urr_ie_tree, ie_offset, ie_len, NULL, 0);
break;
case 6:
/* GSM Coverage Indicator */
@@ -1022,7 +1022,7 @@ dissect_uma_IE(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree, int offset)
break;
case 18: /* Routing Area Identification */
/* The rest of the IE is coded as in [TS 24.008] not including IEI and length, if present.*/
- de_gmm_rai(tvb, urr_ie_tree, offset, ie_len, NULL, 0);
+ de_gmm_rai(tvb, urr_ie_tree, ie_offset, ie_len, NULL, 0);
break;
case 19: /* UMA Band */
proto_tree_add_item(urr_ie_tree, hf_uma_urr_UMA_band, tvb, ie_offset, 1, FALSE);
@@ -1059,7 +1059,7 @@ dissect_uma_IE(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree, int offset)
/* Channel Mode
* The rest of the IE is coded as in [TS 44.018], not including IEI and length, if present
*/
- de_rr_ch_mode(tvb, urr_ie_tree, offset, ie_len, NULL, 0);
+ de_rr_ch_mode(tvb, urr_ie_tree, ie_offset, ie_len, NULL, 0);
break;
case 28:
/* Mobile Station Classmark 2
@@ -1078,13 +1078,13 @@ dissect_uma_IE(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree, int offset)
* Note: The coding of fields SC and algorithm identifier is defined in [44.018]
* as part of the Cipher Mode Setting IE.
*/
- de_rr_cip_mode_set(tvb, urr_ie_tree, offset, ie_len, NULL, 0);
+ de_rr_cip_mode_set(tvb, urr_ie_tree, ie_offset, ie_len, NULL, 0);
break;
case 31:
/* GPRS Resumption
* If the target RAT is GERAN, the rest of the IE is coded as HANDOVER COMMAND message in [TS 44.018]
*/
- dtap_rr_ho_cmd(tvb, urr_ie_tree, offset, ie_len);
+ dtap_rr_ho_cmd(tvb, urr_ie_tree, ie_offset, ie_len);
break;
case 32:
/* Handover From UMAN Command
@@ -1106,19 +1106,19 @@ dissect_uma_IE(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree, int offset)
* [TS 44.018]:10.5.2.41a
* The TLLI is encoded as a binary number with a length of 4 octets. TLLI is defined in 3GPP TS 23.003
*/
- de_rr_tlli(tvb, urr_ie_tree, offset, ie_len, NULL, 0);
+ de_rr_tlli(tvb, urr_ie_tree, ie_offset, ie_len, NULL, 0);
break;
case 35:
/* Packet Flow Identifier
* The rest of the IE is coded as in [TS 24.008], not including IEI and length, if present.
*/
- de_sm_pflow_id(tvb, urr_ie_tree, offset, ie_len, NULL, 0);
+ de_sm_pflow_id(tvb, urr_ie_tree, ie_offset, ie_len, NULL, 0);
break;
case 36:
/* Suspension Cause
* The rest of the IE is coded as in [TS 44.018], not including IEI and length, if present.
*/
- de_rr_sus_cau(tvb, urr_ie_tree, offset, ie_len, NULL, 0);
+ de_rr_sus_cau(tvb, urr_ie_tree, ie_offset, ie_len, NULL, 0);
break;
case 37: /* TU3920 Timer */
proto_tree_add_item(urr_ie_tree, hf_uma_urr_TU3920_timer, tvb, ie_offset, 2, FALSE);