aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKim Alvefur <zash@zash.se>2017-07-25 13:25:49 +0200
committerKim Alvefur <zash@zash.se>2017-07-25 13:25:49 +0200
commit0a64a2f9a8d3765a7f7126dc3d295b831fb1a8c7 (patch)
tree03e17d92afffaf8002b7159dfb041b1bef93f437
parentbe92d92ad720c90767daf5c14c2221b6c6ab288b (diff)
downloadprosody-0a64a2f9a8d3765a7f7126dc3d295b831fb1a8c7.tar.gz
prosody-0a64a2f9a8d3765a7f7126dc3d295b831fb1a8c7.zip
util.dependencies: Add comment about LuaSec compat
-rw-r--r--util/dependencies.lua1
1 files changed, 1 insertions, 0 deletions
diff --git a/util/dependencies.lua b/util/dependencies.lua
index a259c263..7ec56022 100644
--- a/util/dependencies.lua
+++ b/util/dependencies.lua
@@ -103,6 +103,7 @@ function check_dependencies()
["Source"] = "http://www.inf.puc-rio.br/~brunoos/luasec/";
}, "SSL/TLS support will not be available");
elseif not _G.ssl then
+ -- COMPAT Code expecting LuaSec to export as a global (see #749)
_G.ssl = ssl;
_G.ssl.context = require "ssl.context";
_G.ssl.x509 = softreq "ssl.x509";