Software /
code /
prosody
Changeset
2850:3f646804ed6a
util.encodings: Use STD3 ASCII rules for idna.to_ascii.
author | Waqas Hussain <waqas20@gmail.com> |
---|---|
date | Wed, 10 Feb 2010 00:12:48 +0500 |
parents | 2849:c940726e787e |
children | 2851:dcd1c0a90b2f |
files | util-src/encodings.c |
diffstat | 1 files changed, 1 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/util-src/encodings.c Fri Feb 05 15:05:39 2010 +0000 +++ b/util-src/encodings.c Wed Feb 10 00:12:48 2010 +0500 @@ -174,7 +174,7 @@ 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);