aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-s1ap.c
diff options
context:
space:
mode:
authoretxrab <etxrab@f5534014-38df-0310-8fa8-9805f1628bb7>2008-11-24 22:16:53 +0000
committeretxrab <etxrab@f5534014-38df-0310-8fa8-9805f1628bb7>2008-11-24 22:16:53 +0000
commitbb38a6bff46a86d6421c4aed9d7806b83eeea8b2 (patch)
tree9e0a0bbb2d4445ed6c94504139385e7902bc1be7 /epan/dissectors/packet-s1ap.c
parent38b250c0c66cd4997e051f7644b2487e0f2946c7 (diff)
NAS PDU:s are different in LTE.
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@26837 f5534014-38df-0310-8fa8-9805f1628bb7
Diffstat (limited to 'epan/dissectors/packet-s1ap.c')
-rw-r--r--epan/dissectors/packet-s1ap.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/epan/dissectors/packet-s1ap.c b/epan/dissectors/packet-s1ap.c
index 04c09e064a..0ef9853186 100644
--- a/epan/dissectors/packet-s1ap.c
+++ b/epan/dissectors/packet-s1ap.c
@@ -68,7 +68,7 @@
/* No SCTP port registered with IANA for S1AP yet */
#define SCTP_PORT_S1AP 0
-static dissector_handle_t gsm_a_dtap_handle;
+static dissector_handle_t nas_eps_handle;
/*--- Included file: packet-s1ap-val.h ---*/
@@ -2097,7 +2097,7 @@ dissect_s1ap_NAS_PDU(tvbuff_t *tvb _U_, int offset _U_, asn1_ctx_t *actx _U_, pr
if (parameter_tvb)
- call_dissector(gsm_a_dtap_handle,parameter_tvb,actx->pinfo, proto_tree_get_root(tree));
+ call_dissector(nas_eps_handle,parameter_tvb,actx->pinfo, proto_tree_get_root(tree));
@@ -5672,7 +5672,7 @@ proto_reg_handoff_s1ap(void)
dissector_add("sctp.port", SctpPort, s1ap_handle);
}
- gsm_a_dtap_handle = find_dissector("gsm_a_dtap");
+ nas_eps_handle = find_dissector("nas_eps");
}
/*--- proto_register_s1ap -------------------------------------------*/