util: Add compat for prosody module name change to C sources

This commit is contained in:
Kim Alvefur 2023-03-17 18:03:07 +01:00
parent 43531740f9
commit 8136aa749a
14 changed files with 64 additions and 14 deletions

View file

@ -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);
}