util.encodings: Use STD3 ASCII rules for idna.to_ascii.

This commit is contained in:
Waqas Hussain 2010-02-10 00:12:48 +05:00
parent 85d9e34b7e
commit e376e12502

View file

@ -174,7 +174,7 @@ static int Lidna_to_ascii(lua_State *L) /** idna.to_ascii(s) */
size_t len;
const char *s = luaL_checklstring(L, 1, &len);
char* output = NULL;
int ret = idna_to_ascii_8z(s, &output, 0);
int ret = idna_to_ascii_8z(s, &output, IDNA_USE_STD3_ASCII_RULES);
if (ret == IDNA_SUCCESS) {
lua_pushstring(L, output);
idn_free(output);