certmanager: Fix. Again.
authorKim Alvefur <zash@zash.se>
Tue, 15 Oct 2013 10:47:34 +0200
changeset 5874 3321a4b3e6c4
parent 5872 1c3ebd3009fe
child 5875 e4150e6720f7
child 5881 12d12bda4b8c
certmanager: Fix. Again.
core/certmanager.lua
--- a/core/certmanager.lua	Tue Oct 15 01:37:16 2013 +0200
+++ b/core/certmanager.lua	Tue Oct 15 10:47:34 2013 +0200
@@ -54,8 +54,8 @@
 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