Use NON-TRANSITIONAL toASCII() with libicu

This commit is contained in:
Tim Rühsen 2017-01-16 10:47:21 +01:00
parent 26d0856d0a
commit eda8276b5f
1 changed files with 1 additions and 1 deletions

View File

@ -658,7 +658,7 @@ static _psl_idna_t *_psl_idna_open(void)
{
#if defined(WITH_LIBICU)
UErrorCode status = 0;
return (void *)uidna_openUTS46(UIDNA_USE_STD3_RULES, &status);
return (void *)uidna_openUTS46(UIDNA_USE_STD3_RULES | UIDNA_NONTRANSITIONAL_TO_ASCII, &status);
#endif
return NULL;
}