aboutsummaryrefslogtreecommitdiffstats
path: root/util-src/crand.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
commitc3d9a2c11d362fcd1677d169af395c1f7bb8d4f1 (patch)
treef74647d6ef7f599b9f5283ae25b85c10ac124a2e /util-src/crand.c
parentea5d14cb81bd618da08e46fc4a314379d8df46ca (diff)
parent9aed5f791f903dd1d5bd997fcb15bcece4c8e9e4 (diff)
downloadprosody-c3d9a2c11d362fcd1677d169af395c1f7bb8d4f1.tar.gz
prosody-c3d9a2c11d362fcd1677d169af395c1f7bb8d4f1.zip
Merge 0.10->trunk
Diffstat (limited to 'util-src/crand.c')
-rw-r--r--util-src/crand.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/util-src/crand.c b/util-src/crand.c
index fbdec8f8..177511ce 100644
--- a/util-src/crand.c
+++ b/util-src/crand.c
@@ -130,6 +130,9 @@ int Lseed(lua_State *L) {
#endif
int luaopen_util_crand(lua_State *L) {
+#if (LUA_VERSION_NUM > 501)
+ luaL_checkversion(L);
+#endif
lua_newtable(L);
lua_pushcfunction(L, Lrandom);
lua_setfield(L, -2, "bytes");