aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-x2ap.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-x2ap.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-x2ap.c')
-rw-r--r--epan/dissectors/packet-x2ap.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/epan/dissectors/packet-x2ap.c b/epan/dissectors/packet-x2ap.c
index 9a42b50dbd..bb856a5299 100644
--- a/epan/dissectors/packet-x2ap.c
+++ b/epan/dissectors/packet-x2ap.c
@@ -1007,7 +1007,7 @@ dissect_x2ap_PLMN_Identity(tvbuff_t *tvb _U_, int offset _U_, asn1_ctx_t *actx _
if (!parameter_tvb)
return offset;
- dissect_e212_mcc_mnc(parameter_tvb, actx->pinfo, tree, 0);
+ dissect_e212_mcc_mnc(parameter_tvb, actx->pinfo, tree, 0, FALSE);
return offset;