mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
Fix for hashes.c and encodings.c to rename luaopen for util_*
This commit is contained in:
parent
7e9f14dae5
commit
1985b40ecf
2 changed files with 2 additions and 2 deletions
|
@ -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);
|
||||
|
||||
|
|
|
@ -48,7 +48,7 @@ static const luaL_Reg Reg[] =
|
|||
{ NULL, NULL }
|
||||
};
|
||||
|
||||
LUALIB_API int luaopen_hashes(lua_State *L)
|
||||
LUALIB_API int luaopen_util_hashes(lua_State *L)
|
||||
{
|
||||
luaL_register(L, "hashes", Reg);
|
||||
lua_pushliteral(L, "version"); /** version */
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue