util.signal: Moved a variable declaration to the top of a function, for ANSI C compli...
[prosody.git] / util-src / encodings.c
index 5147512f82fd210b9285c0db73259363e3be5ee8..f2109d0c1a2433e2b0f88afd5b9e5f5a00046576 100644 (file)
@@ -1,6 +1,6 @@
-/* Prosody IM v0.4
--- Copyright (C) 2008-2009 Matthew Wild
--- Copyright (C) 2008-2009 Waqas Hussain
+/* Prosody IM
+-- Copyright (C) 2008-2010 Matthew Wild
+-- Copyright (C) 2008-2010 Waqas Hussain
 -- 
 -- This project is MIT/X11 licensed. Please see the
 -- COPYING file in the source package for more information.
@@ -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);