mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
util: Add compat for prosody module name change to C sources
This commit is contained in:
parent
43531740f9
commit
8136aa749a
14 changed files with 64 additions and 14 deletions
|
@ -60,7 +60,7 @@ static int Lmove (lua_State *L) {
|
|||
return 1;
|
||||
}
|
||||
|
||||
int luaopen_util_table(lua_State *L) {
|
||||
int luaopen_prosody_util_table(lua_State *L) {
|
||||
luaL_checkversion(L);
|
||||
lua_createtable(L, 0, 2);
|
||||
lua_pushcfunction(L, Lcreate_table);
|
||||
|
@ -71,3 +71,7 @@ int luaopen_util_table(lua_State *L) {
|
|||
lua_setfield(L, -2, "move");
|
||||
return 1;
|
||||
}
|
||||
|
||||
int luaopen_util_table(lua_State *L) {
|
||||
return luaopen_prosody_util_table(L);
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue