diff options
author | Jay Freeman (saurik) <saurik@saurik.com> | 2016-12-29 21:22:25 -0800 |
---|---|---|
committer | Sam Bingner <sam@bingner.com> | 2020-07-17 00:22:23 -1000 |
commit | 8f1fe8b4d4f8b720a3e7b068a3b515fe15ecc6be (patch) | |
tree | 84cda304735a2b77ae18a16cf945c2044b56b951 | |
parent | 2111d2bf71874ab207d432a13c6cf5af735a9f48 (diff) |
In the C locale, let's avoid any crazy transforms.
-rw-r--r-- | apt-pkg/deb/debrecords.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apt-pkg/deb/debrecords.cc b/apt-pkg/deb/debrecords.cc index 62e13c842..360000479 100644 --- a/apt-pkg/deb/debrecords.cc +++ b/apt-pkg/deb/debrecords.cc @@ -160,7 +160,7 @@ string debRecordParserBase::LongDesc(std::string const &lang) } char const * const codeset = nl_langinfo(CODESET); - if (strcmp(codeset,"UTF-8") != 0) { + if (strcmp(codeset,"US-ASCII") != 0 && strcmp(codeset,"UTF-8") != 0) { string dest; UTF8ToCodeset(codeset, orig, &dest); return dest; |