aboutsummaryrefslogtreecommitdiffstats
path: root/util-src/net.c
diff options
context:
space:
mode:
authorKim Alvefur <zash@zash.se>2017-01-09 10:17:39 +0100
committerKim Alvefur <zash@zash.se>2017-01-09 10:17:39 +0100
commitfde889b4ececec3509342955533058672df4a2c3 (patch)
treef74647d6ef7f599b9f5283ae25b85c10ac124a2e /util-src/net.c
parent3c6c798435a4197ea3d07db09ee5df58a1216b26 (diff)
parentd3f66c0848559e7f019aa50617052a0030f2df65 (diff)
downloadprosody-fde889b4ececec3509342955533058672df4a2c3.tar.gz
prosody-fde889b4ececec3509342955533058672df4a2c3.zip
Merge 0.10->trunk
Diffstat (limited to 'util-src/net.c')
-rw-r--r--util-src/net.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/util-src/net.c b/util-src/net.c
index 3ccc7618..18f3d27a 100644
--- a/util-src/net.c
+++ b/util-src/net.c
@@ -125,6 +125,9 @@ static int lc_local_addresses(lua_State* L) {
}
int luaopen_util_net(lua_State* L) {
+#if (LUA_VERSION_NUM > 501)
+ luaL_checkversion(L);
+#endif
luaL_Reg exports[] = {
{ "local_addresses", lc_local_addresses },
{ NULL, NULL }