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/encodings.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/encodings.c')
-rw-r--r-- | util-src/encodings.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/util-src/encodings.c b/util-src/encodings.c index 35677095..6389b2be 100644 --- a/util-src/encodings.c +++ b/util-src/encodings.c @@ -524,6 +524,9 @@ static const luaL_Reg Reg_idna[] = { /***************** end *****************/ LUALIB_API int luaopen_util_encodings(lua_State* L) { +#if (LUA_VERSION_NUM > 501) + luaL_checkversion(L); +#endif #ifdef USE_STRINGPREP_ICU init_icu(); #endif |