diff options
author | Gerasimos Dimitriadis <dimeg@intracom.gr> | 2010-03-20 23:53:22 +0000 |
---|---|---|
committer | Gerasimos Dimitriadis <dimeg@intracom.gr> | 2010-03-20 23:53:22 +0000 |
commit | dfde72f24749689ce0f9c6f2b6d2095f8ad989da (patch) | |
tree | 652f670716f205547d9640114e01a40427e20cdc /epan/dissectors/packet-e212.h | |
parent | f8387d12402cd22e97f004b8929d954774e053a5 (diff) | |
download | wireshark-dfde72f24749689ce0f9c6f2b6d2095f8ad989da.tar.gz wireshark-dfde72f24749689ce0f9c6f2b6d2095f8ad989da.tar.bz2 wireshark-dfde72f24749689ce0f9c6f2b6d2095f8ad989da.zip |
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-e212.h')
-rw-r--r-- | epan/dissectors/packet-e212.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/epan/dissectors/packet-e212.h b/epan/dissectors/packet-e212.h index ec92f3f7a4..71975eccef 100644 --- a/epan/dissectors/packet-e212.h +++ b/epan/dissectors/packet-e212.h @@ -30,7 +30,7 @@ extern const value_string E212_codes[]; -int dissect_e212_mcc_mnc(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree, int offset); +int dissect_e212_mcc_mnc(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree, int offset, gboolean little_endian); int dissect_e212_mcc_mnc_in_address(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree, int offset); #endif /* __PACKET_E212_H__ */ |