X-Git-Url: https://git.enpas.org/?a=blobdiff_plain;f=util-src%2Fnet.c;h=3ccc7618e95dfbb1292f7f25e7b14a52cc1bc6cd;hb=fe29696ee23a225450977b0b8b33d0d860b96542;hp=ad09d04153d41d05bf5770a8b98dbe830d217517;hpb=774d985d6a690539af5086956f2c9fb89c41ad26;p=prosody.git diff --git a/util-src/net.c b/util-src/net.c index ad09d041..3ccc7618 100644 --- a/util-src/net.c +++ b/util-src/net.c @@ -26,8 +26,8 @@ #include #include -#if (LUA_VERSION_NUM == 502) -#define luaL_register(L, N, R) luaL_setfuncs(L, R, 0) +#if (LUA_VERSION_NUM == 501) +#define luaL_setfuncs(L, R, N) luaL_register(L, NULL, R) #endif /* Enumerate all locally configured IP addresses */ @@ -131,6 +131,6 @@ int luaopen_util_net(lua_State* L) { }; lua_newtable(L); - luaL_register(L, NULL, exports); + luaL_setfuncs(L, exports, 0); return 1; }