# HG changeset patch # User Waqas Hussain # Date 1265742768 -18000 # Node ID 0584e157f0737355cc19613c34b1dc58c6849984 # Parent 8a16c5e92bcb55770d00afa09ea84de021dace3f util.encodings: Use STD3 ASCII rules for idna.to_ascii. diff -r 8a16c5e92bcb -r 0584e157f073 util-src/encodings.c --- a/util-src/encodings.c Mon Feb 08 11:22:21 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);