aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKim Alvefur <zash@zash.se>2016-11-18 10:21:02 +0100
committerKim Alvefur <zash@zash.se>2016-11-18 10:21:02 +0100
commitc79f5d431e5f25c74519a3ab1dcfcabe89511c22 (patch)
treef073718da7c65122a5e02d67b06b4b9fafe08365
parent4addf790d803da7788164ab7e9d4ee5b1826b80c (diff)
downloadprosody-c79f5d431e5f25c74519a3ab1dcfcabe89511c22.tar.gz
prosody-c79f5d431e5f25c74519a3ab1dcfcabe89511c22.zip
util.dependencies: Disable warning about Lua 5.2 (but still warn about 5.3)
-rw-r--r--util/dependencies.lua2
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";