diff options
Diffstat (limited to 'util-src/crypto.c')
-rw-r--r-- | util-src/crypto.c | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/util-src/crypto.c b/util-src/crypto.c index d2427503..1e69599d 100644 --- a/util-src/crypto.c +++ b/util-src/crypto.c @@ -592,7 +592,7 @@ static const luaL_Reg KeyMetatable[] = { { NULL, NULL } }; -LUALIB_API int luaopen_util_crypto(lua_State *L) { +LUALIB_API int luaopen_prosody_util_crypto(lua_State *L) { #if (LUA_VERSION_NUM > 501) luaL_checkversion(L); #endif @@ -616,3 +616,7 @@ LUALIB_API int luaopen_util_crypto(lua_State *L) { #endif return 1; } + +LUALIB_API int luaopen_util_crypto(lua_State *L) { + return luaopen_prosody_util_crypto(L); +} |