aboutsummaryrefslogtreecommitdiffstats
path: root/epan
diff options
context:
space:
mode:
authorGerasimos Dimitriadis <dimeg@intracom.gr>2010-08-17 21:35:26 +0000
committerGerasimos Dimitriadis <dimeg@intracom.gr>2010-08-17 21:35:26 +0000
commit27b4dfa426033828b2d581feca49468519a04eca (patch)
treeb02f3134fd97338870b4a65f002b584819019337 /epan
parenta0387bbbc6312a3a72ffd24e14bc8d4c0d2629a4 (diff)
The Mobile Status msg in BSSAP+ has IMSI as first possible IE
svn path=/trunk/; revision=33832
Diffstat (limited to 'epan')
-rw-r--r--epan/dissectors/packet-bssap.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/epan/dissectors/packet-bssap.c b/epan/dissectors/packet-bssap.c
index 9a24ec4ab9..e65167acb3 100644
--- a/epan/dissectors/packet-bssap.c
+++ b/epan/dissectors/packet-bssap.c
@@ -2117,7 +2117,7 @@ static void dissect_bssap_plus(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tr
break;
case BSSAP_MOBILE_STATUS: /* 17.1.13 */
/* IMSI IMSI 18.4.10 O TLV 6-10 */
- if ( check_optional_ie(tvb, offset, BSSAP_MM_INFORMATION))
+ if ( check_optional_ie(tvb, offset, BSSAP_IMSI))
offset = dissect_bssap_imsi(tvb, bssap_tree, offset);
/* Gs Cause Gs Cause 18.4.7 M TLV 3 */
if ( check_ie(tvb, tree, &offset, BSSAP_GS_CAUSE))