aboutsummaryrefslogtreecommitdiffstats
path: root/asn1
diff options
context:
space:
mode:
authorwmeier <wmeier@f5534014-38df-0310-8fa8-9805f1628bb7>2011-10-23 23:13:57 +0000
committerwmeier <wmeier@f5534014-38df-0310-8fa8-9805f1628bb7>2011-10-23 23:13:57 +0000
commitf0dfc598d76a77e392939edbce5b1038d22962cc (patch)
tree6d7576937f51bf50d08489b303e281c749c82a0b /asn1
parent1501c3077b6aa8261fa20c60253fbb4556ef8e14 (diff)
Replace use of tvb_get_ephemeral_faked_unicode() by use of tvb_get_ephemeral_unicode_string();
Fix encoding arg. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@39531 f5534014-38df-0310-8fa8-9805f1628bb7
Diffstat (limited to 'asn1')
-rw-r--r--asn1/x509sat/x509sat.cnf2
1 files changed, 1 insertions, 1 deletions
diff --git a/asn1/x509sat/x509sat.cnf b/asn1/x509sat/x509sat.cnf
index 932087617d..e00366ed14 100644
--- a/asn1/x509sat/x509sat.cnf
+++ b/asn1/x509sat/x509sat.cnf
@@ -356,7 +356,7 @@ XDayOf/fifth fifth_dayof
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);
#.END