diff options
author | Kim Alvefur <zash@zash.se> | 2016-11-28 14:27:59 +0100 |
---|---|---|
committer | Kim Alvefur <zash@zash.se> | 2016-11-28 14:27:59 +0100 |
commit | b66085658d0806343556084c03e5ee093ec8bc4a (patch) | |
tree | 967ea2ec18ea10b4ea3b1812de7fb96e39c11211 /util/dependencies.lua | |
parent | 421f71c745a594b1e832075f856a328149cc8e84 (diff) | |
download | prosody-b66085658d0806343556084c03e5ee093ec8bc4a.tar.gz prosody-b66085658d0806343556084c03e5ee093ec8bc4a.zip |
util.dependencies: Set ssl.x509 so core.certmanager knows that LuaSec is capable of certificate validation (fixes #781)
Diffstat (limited to 'util/dependencies.lua')
-rw-r--r-- | util/dependencies.lua | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/util/dependencies.lua b/util/dependencies.lua index 9ea211dd..491bfd9b 100644 --- a/util/dependencies.lua +++ b/util/dependencies.lua @@ -102,6 +102,7 @@ function check_dependencies() elseif not _G.ssl then _G.ssl = ssl; _G.ssl.context = require "ssl.context"; + _G.ssl.x509 = softreq "ssl.x509"; end local encodings, err = softreq "util.encodings" |