diff options
author | Kim Alvefur <zash@zash.se> | 2013-01-07 02:17:07 +0100 |
---|---|---|
committer | Kim Alvefur <zash@zash.se> | 2013-01-07 02:17:07 +0100 |
commit | e56d434e18ad42ea91e9918b6c2b013c6e983450 (patch) | |
tree | 2168b8ba77b8bf1bb90938fb5db5a4d9d62dbf9e | |
parent | e5537b580ca4ed18aed65b3db419695ec5befd5b (diff) | |
download | prosody-e56d434e18ad42ea91e9918b6c2b013c6e983450.tar.gz prosody-e56d434e18ad42ea91e9918b6c2b013c6e983450.zip |
certmanager: Fix nil index if no LuaSec available
-rw-r--r-- | core/certmanager.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/certmanager.lua b/core/certmanager.lua index a9f8b644..8607e618 100644 --- a/core/certmanager.lua +++ b/core/certmanager.lua @@ -33,7 +33,7 @@ local default_verify = (ssl and ssl.x509 and { "peer", "client_once", }) or "non local default_options = { "no_sslv2", luasec_has_noticket and "no_ticket" or nil }; local default_verifyext = { "lsec_continue", "lsec_ignore_purpose" }; -if not luasec_has_verifyext and ssl.x509 then +if ssl and not luasec_has_verifyext and ssl.x509 then -- COMPAT mw/luasec-hg for i=1,#default_verifyext do -- Remove lsec_ prefix default_verify[#default_verify+1] = default_verifyext[i]:sub(6); |