aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-gsmtap.c
diff options
context:
space:
mode:
authorAnders Broman <anders.broman@ericsson.com>2011-07-06 12:47:21 +0000
committerAnders Broman <anders.broman@ericsson.com>2011-07-06 12:47:21 +0000
commit6fdf0eed8f357a68f238f716e455f4c07a471846 (patch)
treeffee5e5cd924818f6e911d11ac0331df096120c0 /epan/dissectors/packet-gsmtap.c
parent8180111144d28fe92f78caf2339febcaeadd19e1 (diff)
From HAESSLER:
Abis interface not correctly handled in gsmtap dissector https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=6097 svn path=/trunk/; revision=37918
Diffstat (limited to 'epan/dissectors/packet-gsmtap.c')
-rw-r--r--epan/dissectors/packet-gsmtap.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/epan/dissectors/packet-gsmtap.c b/epan/dissectors/packet-gsmtap.c
index 37f76ede3c..41054ec6a6 100644
--- a/epan/dissectors/packet-gsmtap.c
+++ b/epan/dissectors/packet-gsmtap.c
@@ -426,6 +426,9 @@ dissect_gsmtap(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree)
break;
}
break;
+ case GSMTAP_TYPE_ABIS:
+ sub_handle = GSMTAP_SUB_ABIS;
+ break;
case GSMTAP_TYPE_TETRA_I1:
handle_tetra(tvb_get_guint8(tvb, offset+12), payload_tvb, pinfo, tree);
return;