aboutsummaryrefslogtreecommitdiffstats
path: root/src/lib/asn1
diff options
context:
space:
mode:
authorJack Lloyd <[email protected]>2016-03-06 04:55:08 -0500
committerJack Lloyd <[email protected]>2016-03-06 04:55:08 -0500
commit21ff2c7fceb5fb233adb9607c0eb663eba182a6c (patch)
tree2f4d1fc2d06fa0014d73bc70047550099a9a17a2 /src/lib/asn1
parent986628ac9e2a3dcda416c9676ebe9785da1378aa (diff)
Fix ordering of Charset::transcode arguments
GH #438
Diffstat (limited to 'src/lib/asn1')
-rw-r--r--src/lib/asn1/asn1_str.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/asn1/asn1_str.cpp b/src/lib/asn1/asn1_str.cpp
index fca0f442a..c378d5dfe 100644
--- a/src/lib/asn1/asn1_str.cpp
+++ b/src/lib/asn1/asn1_str.cpp
@@ -137,7 +137,7 @@ void ASN1_String::decode_from(BER_Decoder& source)
charset_is = LATIN1_CHARSET;
*this = ASN1_String(
- Charset::transcode(ASN1::to_string(obj), charset_is, LOCAL_CHARSET),
+ Charset::transcode(ASN1::to_string(obj), LOCAL_CHARSET, charset_is),
obj.type_tag);
}