From 8136aa749a76e4fbb5b7e3cc34c878733647b8e9 Mon Sep 17 00:00:00 2001 From: Kim Alvefur Date: Fri, 17 Mar 2023 18:03:07 +0100 Subject: util: Add compat for prosody module name change to C sources --- util-src/strbitop.c | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) (limited to 'util-src/strbitop.c') diff --git a/util-src/strbitop.c b/util-src/strbitop.c index 722f5a2d..75cfea81 100644 --- a/util-src/strbitop.c +++ b/util-src/strbitop.c @@ -74,7 +74,7 @@ static int strop_xor(lua_State *L) { return 1; } -LUA_API int luaopen_util_strbitop(lua_State *L) { +LUA_API int luaopen_prosody_util_strbitop(lua_State *L) { luaL_Reg exports[] = { { "sand", strop_and }, { "sor", strop_or }, @@ -86,3 +86,7 @@ LUA_API int luaopen_util_strbitop(lua_State *L) { luaL_setfuncs(L, exports, 0); return 1; } + +LUA_API int luaopen_util_strbitop(lua_State *L) { + return luaopen_prosody_util_strbitop(L); +} -- cgit v1.2.3