aboutsummaryrefslogtreecommitdiffstats
path: root/util-src/compat.c
diff options
context:
space:
mode:
authorKim Alvefur <zash@zash.se>2023-03-17 18:03:07 +0100
committerKim Alvefur <zash@zash.se>2023-03-17 18:03:07 +0100
commit8136aa749a76e4fbb5b7e3cc34c878733647b8e9 (patch)
tree7e71cc9519d75ff95f99425922a9f710b2cad674 /util-src/compat.c
parent43531740f99da82f023bee26d954fc71bde94635 (diff)
downloadprosody-8136aa749a76e4fbb5b7e3cc34c878733647b8e9.tar.gz
prosody-8136aa749a76e4fbb5b7e3cc34c878733647b8e9.zip
util: Add compat for prosody module name change to C sources
Diffstat (limited to 'util-src/compat.c')
-rw-r--r--util-src/compat.c6
1 files changed, 5 insertions, 1 deletions
diff --git a/util-src/compat.c b/util-src/compat.c
index 34b35c35..3918bf3e 100644
--- a/util-src/compat.c
+++ b/util-src/compat.c
@@ -19,7 +19,7 @@ static int lc_xpcall (lua_State *L) {
return lua_gettop(L);
}
-int luaopen_util_compat(lua_State *L) {
+int luaopen_prosody_util_compat(lua_State *L) {
lua_createtable(L, 0, 2);
{
lua_pushcfunction(L, lc_xpcall);
@@ -27,3 +27,7 @@ int luaopen_util_compat(lua_State *L) {
}
return 1;
}
+
+int luaopen_util_compat(lua_State *L) {
+ return luaopen_prosody_util_compat(L);
+}