aboutsummaryrefslogtreecommitdiffstats
path: root/util-src/ringbuffer.c
diff options
context:
space:
mode:
authorKim Alvefur <zash@zash.se>2017-01-08 14:21:08 +0100
committerKim Alvefur <zash@zash.se>2017-01-08 14:21:08 +0100
commit5f26a96cc471f320b763f00f4dea785500d7ebb3 (patch)
treecc0b5c0edcee314b6909b3b18bed137ed8722358 /util-src/ringbuffer.c
parent311fc4e4dd37b88e78889d17d53727e0b5876685 (diff)
downloadprosody-5f26a96cc471f320b763f00f4dea785500d7ebb3.tar.gz
prosody-5f26a96cc471f320b763f00f4dea785500d7ebb3.zip
util-src: Make C modules assert that the Lua runtime matches what it was compiled for
Diffstat (limited to 'util-src/ringbuffer.c')
-rw-r--r--util-src/ringbuffer.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/util-src/ringbuffer.c b/util-src/ringbuffer.c
index f5fa136b..d60a43d9 100644
--- a/util-src/ringbuffer.c
+++ b/util-src/ringbuffer.c
@@ -197,6 +197,9 @@ int rb_gc(lua_State* L) {
}
int luaopen_util_ringbuffer(lua_State* L) {
+#if (LUA_VERSION_NUM > 501)
+ luaL_checkversion(L);
+#endif
if(luaL_newmetatable(L, "ringbuffer_mt")) {
lua_pushcfunction(L, rb_tostring);
lua_setfield(L, -2, "__tostring");