diff options
author | Kim Alvefur <zash@zash.se> | 2017-01-08 14:21:08 +0100 |
---|---|---|
committer | Kim Alvefur <zash@zash.se> | 2017-01-08 14:21:08 +0100 |
commit | 5b10d245e368cd54f33928665b282462a52fd5d8 (patch) | |
tree | cc0b5c0edcee314b6909b3b18bed137ed8722358 /util-src/signal.c | |
parent | ef391bf6c46128a67c5cb408496ea51b6f0d3736 (diff) | |
download | prosody-5b10d245e368cd54f33928665b282462a52fd5d8.tar.gz prosody-5b10d245e368cd54f33928665b282462a52fd5d8.zip |
util-src: Make C modules assert that the Lua runtime matches what it was compiled for
Diffstat (limited to 'util-src/signal.c')
-rw-r--r-- | util-src/signal.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/util-src/signal.c b/util-src/signal.c index 725555fa..3f29febb 100644 --- a/util-src/signal.c +++ b/util-src/signal.c @@ -384,6 +384,9 @@ static const struct luaL_Reg lsignal_lib[] = { }; int luaopen_util_signal(lua_State* L) { +#if (LUA_VERSION_NUM > 501) + luaL_checkversion(L); +#endif int i = 0; /* add the library */ |