aboutsummaryrefslogtreecommitdiffstats
path: root/asn1
diff options
context:
space:
mode:
authorAnders Broman <anders.broman@ericsson.com>2008-10-28 19:31:29 +0000
committerAnders Broman <anders.broman@ericsson.com>2008-10-28 19:31:29 +0000
commitd397a165c2a9f8d192028831cfc25bc8a8f364ca (patch)
tree73f53c2e258eef4917704104c963058ffeae87b1 /asn1
parent1d4e3ad464b0e2832c1ab2e1702a0acde5df3cad (diff)
From Shmulik Bezale:
GSM_MAP - ucs2 support on USSD. https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=2991 svn path=/trunk/; revision=26606
Diffstat (limited to 'asn1')
-rw-r--r--asn1/gsmmap/gsmmap.cnf2
1 files changed, 1 insertions, 1 deletions
diff --git a/asn1/gsmmap/gsmmap.cnf b/asn1/gsmmap/gsmmap.cnf
index b295a796bc..b84617465e 100644
--- a/asn1/gsmmap/gsmmap.cnf
+++ b/asn1/gsmmap/gsmmap.cnf
@@ -460,7 +460,7 @@ actx->pinfo->p2p_dir = P2P_DIR_RECV;
case SMS_ENCODING_UCS2_LANG:
if ((cd = g_iconv_open("UTF-8","UCS-2BE")) != (GIConv) -1)
{
- utf8_text = g_convert_with_iconv(tvb->real_data, length, cd, NULL, NULL, &l_conv_error);
+ utf8_text = g_convert_with_iconv(parameter_tvb->real_data, length, cd, NULL, NULL, &l_conv_error);
if(!l_conv_error)
proto_tree_add_text(tree, tvb, 0, length, "USSD String: %%s", utf8_text);
else