aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-sabp.c
diff options
context:
space:
mode:
authorGerasimos Dimitriadis <dimeg@intracom.gr>2010-03-20 23:53:22 +0000
committerGerasimos Dimitriadis <dimeg@intracom.gr>2010-03-20 23:53:22 +0000
commitdfde72f24749689ce0f9c6f2b6d2095f8ad989da (patch)
tree652f670716f205547d9640114e01a40427e20cdc /epan/dissectors/packet-sabp.c
parentf8387d12402cd22e97f004b8929d954774e053a5 (diff)
Fix for Bug 4588:
RANAP and friends want the MNC encoded in big endian form. svn path=/trunk/; revision=32257
Diffstat (limited to 'epan/dissectors/packet-sabp.c')
-rw-r--r--epan/dissectors/packet-sabp.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/epan/dissectors/packet-sabp.c b/epan/dissectors/packet-sabp.c
index 2438654027..9d023ac13d 100644
--- a/epan/dissectors/packet-sabp.c
+++ b/epan/dissectors/packet-sabp.c
@@ -688,7 +688,7 @@ dissect_sabp_T_pLMNidentity(tvbuff_t *tvb _U_, int offset _U_, asn1_ctx_t *actx
if (!parameter_tvb)
return offset;
subtree = proto_item_add_subtree(actx->created_item, ett_sabp_e212);
- dissect_e212_mcc_mnc(parameter_tvb, actx->pinfo, subtree, 0);
+ dissect_e212_mcc_mnc(parameter_tvb, actx->pinfo, subtree, 0, FALSE);