diff options
author | Kim Alvefur <zash@zash.se> | 2023-03-17 18:03:07 +0100 |
---|---|---|
committer | Kim Alvefur <zash@zash.se> | 2023-03-17 18:03:07 +0100 |
commit | 8136aa749a76e4fbb5b7e3cc34c878733647b8e9 (patch) | |
tree | 7e71cc9519d75ff95f99425922a9f710b2cad674 /util-src/struct.c | |
parent | 43531740f99da82f023bee26d954fc71bde94635 (diff) | |
download | prosody-8136aa749a76e4fbb5b7e3cc34c878733647b8e9.tar.gz prosody-8136aa749a76e4fbb5b7e3cc34c878733647b8e9.zip |
util: Add compat for prosody module name change to C sources
Diffstat (limited to 'util-src/struct.c')
-rw-r--r-- | util-src/struct.c | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/util-src/struct.c b/util-src/struct.c index b236db5b..a779f53e 100644 --- a/util-src/struct.c +++ b/util-src/struct.c @@ -385,11 +385,15 @@ static const struct luaL_Reg thislib[] = { LUALIB_API int luaopen_util_struct (lua_State *L); -LUALIB_API int luaopen_util_struct (lua_State *L) { +LUALIB_API int luaopen_prosody_util_struct (lua_State *L) { luaL_newlib(L, thislib); return 1; } +LUALIB_API int luaopen_util_struct (lua_State *L) { + return luaopen_prosody_util_struct(L); +} + /****************************************************************************** * Copyright (C) 2010-2018 Lua.org, PUC-Rio. All rights reserved. |