Software /
code /
prosody
Changeset
7721:92f771147de8
util.dependencies: Disable warning about Lua 5.2 (but still warn about 5.3)
author | Kim Alvefur <zash@zash.se> |
---|---|
date | Fri, 18 Nov 2016 10:21:02 +0100 |
parents | 7720:7166750fb963 |
children | 7722:82333dfdfaff |
files | util/dependencies.lua |
diffstat | 1 files changed, 1 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/util/dependencies.lua Fri Nov 18 10:19:34 2016 +0100 +++ b/util/dependencies.lua Fri Nov 18 10:21:02 2016 +0100 @@ -136,7 +136,7 @@ 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";