# HG changeset patch # User Kim Alvefur # Date 1381826854 -7200 # Node ID 3321a4b3e6c4a19c59a1e17dc46124a00aa70525 # Parent 1c3ebd3009fecc2994824a81eb850232e72152b8 certmanager: Fix. Again. diff -r 1c3ebd3009fe -r 3321a4b3e6c4 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