]> source.dussan.org Git - rspamd.git/commitdiff
[Minor] Use ucnv_getCanonicalName instead of ucnv_getStandardName
authorVsevolod Stakhov <vsevolod@highsecure.ru>
Tue, 19 Nov 2019 16:50:50 +0000 (16:50 +0000)
committerVsevolod Stakhov <vsevolod@highsecure.ru>
Tue, 19 Nov 2019 16:50:50 +0000 (16:50 +0000)
src/libmime/mime_encoding.c

index 7ef492f9d414764318af9ebf6a24ef7ab27bdc4c..4ddba8ca0664701161ae06fe0a578f28c0b2fb44 100644 (file)
@@ -284,25 +284,25 @@ rspamd_mime_detect_charset (const rspamd_ftok_t *in, rspamd_mempool_t *pool)
        s = g_hash_table_lookup (sub_hash, ret);
 
        if (s) {
-               return ucnv_getStandardName (s->canon, "IANA", &uc_err);
+               return ucnv_getCanonicalName (s->canon, "MIME", &uc_err);
        }
 
        /* Just fucking stupid */
-       cset = ucnv_getStandardName (ret, "IANA", &uc_err);
+       cset = ucnv_getCanonicalName (ret, "MIME", &uc_err);
 
        if (cset == NULL) {
                uc_err = U_ZERO_ERROR;
-               cset = ucnv_getStandardName (ret, "MIME", &uc_err);
+               cset = ucnv_getCanonicalName (ret, "IANA", &uc_err);
        }
 
        if (cset == NULL) {
                uc_err = U_ZERO_ERROR;
-               cset = ucnv_getStandardName (ret, "WINDOWS", &uc_err);
+               cset = ucnv_getCanonicalName (ret, "WINDOWS", &uc_err);
        }
 
        if (cset == NULL) {
                uc_err = U_ZERO_ERROR;
-               cset = ucnv_getStandardName (ret, "JAVA", &uc_err);
+               cset = ucnv_getCanonicalName (ret, "JAVA", &uc_err);
        }
 
        return cset;