diff options
author | Kim Alvefur <zash@zash.se> | 2016-11-18 10:21:02 +0100 |
---|---|---|
committer | Kim Alvefur <zash@zash.se> | 2016-11-18 10:21:02 +0100 |
commit | 73d36e3ff9d9957737e584aba2841e3ca4621689 (patch) | |
tree | f073718da7c65122a5e02d67b06b4b9fafe08365 /util/dependencies.lua | |
parent | 8624ff85622a050d1085514534335f93af47e003 (diff) | |
download | prosody-73d36e3ff9d9957737e584aba2841e3ca4621689.tar.gz prosody-73d36e3ff9d9957737e584aba2841e3ca4621689.zip |
util.dependencies: Disable warning about Lua 5.2 (but still warn about 5.3)
Diffstat (limited to 'util/dependencies.lua')
-rw-r--r-- | util/dependencies.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/util/dependencies.lua b/util/dependencies.lua index b3f07257..ca97afb5 100644 --- a/util/dependencies.lua +++ b/util/dependencies.lua @@ -136,7 +136,7 @@ local function check_dependencies() end local function log_warnings() - if _VERSION > "Lua 5.1" then + if _VERSION > "Lua 5.2" then prosody.log("warn", "Support for %s is experimental, please report any issues", _VERSION); end local ssl = softreq"ssl"; |