aboutsummaryrefslogtreecommitdiffstats
path: root/core/certmanager.lua
diff options
context:
space:
mode:
authorKim Alvefur <zash@zash.se>2013-10-15 10:47:34 +0200
committerKim Alvefur <zash@zash.se>2013-10-15 10:47:34 +0200
commitddab3471659587368ae35104de4d62776484352a (patch)
treea26fc9bb286552847b9bc015d0fa7bda8220db73 /core/certmanager.lua
parente9b5aeb4c32a14773844d2e04cbde694e9521727 (diff)
downloadprosody-ddab3471659587368ae35104de4d62776484352a.tar.gz
prosody-ddab3471659587368ae35104de4d62776484352a.zip
certmanager: Fix. Again.
Diffstat (limited to 'core/certmanager.lua')
-rw-r--r--core/certmanager.lua4
1 files changed, 2 insertions, 2 deletions
diff --git a/core/certmanager.lua b/core/certmanager.lua
index 0709c650..e8030581 100644
--- a/core/certmanager.lua
+++ b/core/certmanager.lua
@@ -54,8 +54,8 @@ if ssl and not luasec_has_verifyext and ssl.x509 then
end
if luasec_has_no_compression then -- Has no_compression? Then it has these too...
- default_options[#default_options+1] = "single_dh_use";
- default_options[#default_options+1] = "single_ecdh_use";
+ core_defaults.options[#core_defaults.options+1] = "single_dh_use";
+ core_defaults.options[#core_defaults.options+1] = "single_ecdh_use";
if configmanager.get("*", "ssl_compression") ~= true then
core_defaults.options[#core_defaults.options+1] = "no_compression";
end