aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-x509sat.c
diff options
context:
space:
mode:
authorBill Meier <wmeier@newsguy.com>2011-10-23 23:13:57 +0000
committerBill Meier <wmeier@newsguy.com>2011-10-23 23:13:57 +0000
commitb0e7a54741d215e3cc182ed51e4576a0f0e19f57 (patch)
tree6d7576937f51bf50d08489b303e281c749c82a0b /epan/dissectors/packet-x509sat.c
parentd7a184020418cfa3b62f8983045015b5f9521600 (diff)
Replace use of tvb_get_ephemeral_faked_unicode() by use of tvb_get_ephemeral_unicode_string();
Fix encoding arg. svn path=/trunk/; revision=39531
Diffstat (limited to 'epan/dissectors/packet-x509sat.c')
-rw-r--r--epan/dissectors/packet-x509sat.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/epan/dissectors/packet-x509sat.c b/epan/dissectors/packet-x509sat.c
index 8baff61d47..99098e526e 100644
--- a/epan/dissectors/packet-x509sat.c
+++ b/epan/dissectors/packet-x509sat.c
@@ -1518,7 +1518,7 @@ dissect_x509sat_SyntaxBMPString(gboolean implicit_tag _U_, tvbuff_t *tvb _U_, in
if (! wide_tvb) {
return offset;
}
- string = tvb_get_ephemeral_faked_unicode (wide_tvb, 0, tvb_length(wide_tvb) / 2, FALSE);
+ string = tvb_get_ephemeral_unicode_string (wide_tvb, 0, tvb_length(wide_tvb) / 2, ENC_BIG_ENDIAN);
proto_item_append_text(actx->created_item, " %s", string);