diff options
author | Matthew Wild <mwild1@gmail.com> | 2008-11-26 22:45:33 +0000 |
---|---|---|
committer | Matthew Wild <mwild1@gmail.com> | 2008-11-26 22:45:33 +0000 |
commit | 1985b40ecfe529b2c73c4da2f05d93683f375a5e (patch) | |
tree | d70232fde91d1b5f231f7a6ede195d6d36265d86 /util-src/encodings.c | |
parent | 7e9f14dae5d846c83578d6235895a8607362aed9 (diff) | |
download | prosody-1985b40ecfe529b2c73c4da2f05d93683f375a5e.tar.gz prosody-1985b40ecfe529b2c73c4da2f05d93683f375a5e.zip |
Fix for hashes.c and encodings.c to rename luaopen for util_*
Diffstat (limited to 'util-src/encodings.c')
-rw-r--r-- | util-src/encodings.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/util-src/encodings.c b/util-src/encodings.c index cc7beef7..27955601 100644 --- a/util-src/encodings.c +++ b/util-src/encodings.c @@ -199,7 +199,7 @@ static const luaL_Reg Reg[] = { NULL, NULL }
};
-LUALIB_API int luaopen_encodings(lua_State *L)
+LUALIB_API int luaopen_util_encodings(lua_State *L)
{
luaL_register(L, "encodings", Reg);
|