aboutsummaryrefslogtreecommitdiffhomepage
path: root/src
diff options
context:
space:
mode:
authorGravatar Hoa V. DINH <dinh.viet.hoa@gmail.com>2016-11-19 18:38:48 -0800
committerGravatar Hoa V. DINH <dinh.viet.hoa@gmail.com>2016-11-19 18:38:48 -0800
commit107689159bfce257def5eb02f6b76cb6a5c396a6 (patch)
tree5655bf33b5bfbe36b07d19a15e8008be1ff5f8e2 /src
parent6f3026a987351eec500552596f55b5cd33a5c1dd (diff)
Fixed #1555: use us-ascii instead of ascii
Diffstat (limited to 'src')
-rw-r--r--src/core/basetypes/MCString.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/basetypes/MCString.cpp b/src/core/basetypes/MCString.cpp
index 991d7963..57593dae 100644
--- a/src/core/basetypes/MCString.cpp
+++ b/src/core/basetypes/MCString.cpp
@@ -2459,7 +2459,7 @@ String * String::stringWithMUTF7Data(Data * data)
String * String::mUTF7EncodedString()
{
Data * data = mUTF7EncodedData();
- return data->stringWithCharset("ascii");
+ return data->stringWithCharset("us-ascii");
}
String * String::mUTF7DecodedString()