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/poll.c | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) (limited to 'util-src/poll.c') diff --git a/util-src/poll.c b/util-src/poll.c index 7ea2e140..6ec9ae35 100644 --- a/util-src/poll.c +++ b/util-src/poll.c @@ -560,7 +560,7 @@ static int Lnew(lua_State *L) { /* * Open library */ -int luaopen_util_poll(lua_State *L) { +int luaopen_prosody_util_poll(lua_State *L) { luaL_checkversion(L); luaL_newmetatable(L, STATE_MT); @@ -614,3 +614,8 @@ int luaopen_util_poll(lua_State *L) { return 1; } +/* COMPAT */ +int luaopen_util_poll(lua_State *L) { + return luaopen_prosody_util_poll(L); +} + -- cgit v1.2.3