diff options
author | Matthew Wild <mwild1@gmail.com> | 2013-09-03 12:11:11 +0100 |
---|---|---|
committer | Matthew Wild <mwild1@gmail.com> | 2013-09-03 12:11:11 +0100 |
commit | 599f897c2ab1748fbf4f84e06feab78bd4904177 (patch) | |
tree | 140938acb11b9dcfb16868daad072c4da689d41f /core/certmanager.lua | |
parent | beb2881c21aa0111cb9c57bf38f162af8222045b (diff) | |
download | prosody-599f897c2ab1748fbf4f84e06feab78bd4904177.tar.gz prosody-599f897c2ab1748fbf4f84e06feab78bd4904177.zip |
certmanager: Fix for working around a bug with LuaSec 0.4.1 that causes it to not honour the 'ciphers' option. This change will apply 0.9's default cipher string for LuaSec 0.4.1 users.
Diffstat (limited to 'core/certmanager.lua')
-rw-r--r-- | core/certmanager.lua | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/core/certmanager.lua b/core/certmanager.lua index 5dee5876..5aec22b3 100644 --- a/core/certmanager.lua +++ b/core/certmanager.lua @@ -74,11 +74,11 @@ function create_context(host, mode, user_ssl_config) local ctx, err = ssl_newcontext(ssl_config); - -- LuaSec ignores the cipher list from the config, so we have to take care - -- of it ourselves (W/A for #x) - if ctx and user_ssl_config.ciphers then + -- COMPAT: LuaSec 0.4.1 ignores the cipher list from the config, so we have to take + -- care of it ourselves... + if ctx and ssl_config.ciphers then local success; - success, err = ssl.context.setcipher(ctx, user_ssl_config.ciphers); + success, err = ssl.context.setcipher(ctx, ssl_config.ciphers); if not success then ctx = nil; end end |