mirror of
https://github.com/bjc/prosody.git
synced 2025-04-06 06:37:37 +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
|
@ -313,7 +313,7 @@ static int rb_new(lua_State *L) {
|
|||
return 1;
|
||||
}
|
||||
|
||||
int luaopen_util_ringbuffer(lua_State *L) {
|
||||
int luaopen_prosody_util_ringbuffer(lua_State *L) {
|
||||
luaL_checkversion(L);
|
||||
|
||||
if(luaL_newmetatable(L, "ringbuffer_mt")) {
|
||||
|
@ -353,3 +353,7 @@ int luaopen_util_ringbuffer(lua_State *L) {
|
|||
lua_setfield(L, -2, "new");
|
||||
return 1;
|
||||
}
|
||||
|
||||
int luaopen_util_ringbuffer(lua_State *L) {
|
||||
return luaopen_prosody_util_ringbuffer(L);
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue