aboutsummaryrefslogtreecommitdiffstats
path: root/util
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
commit9437d97a37b16df525d134101ec059c19f470fce (patch)
tree03e17d92afffaf8002b7159dfb041b1bef93f437 /util
parent255073d6c9ea8b7718704ec4e8a1aeb524363eed (diff)
downloadprosody-9437d97a37b16df525d134101ec059c19f470fce.tar.gz
prosody-9437d97a37b16df525d134101ec059c19f470fce.zip
util.dependencies: Add comment about LuaSec compat
Diffstat (limited to 'util')
-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";