mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
util.encodings: Use STD3 ASCII rules for idna.to_ascii.
This commit is contained in:
parent
85d9e34b7e
commit
e376e12502
1 changed files with 1 additions and 1 deletions
|
@ -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);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue