# HG changeset patch # User Kim Alvefur # Date 1444585455 -7200 # Node ID 5ff42d85d4d5134db4188deb1f50681501947fb8 # Parent ccc452767ec6065841bde39feb2511cc20f57b82 core.certmanager: Remove non-string filenames (allows setting eg capath to false to disable the built in default) diff -r ccc452767ec6 -r 5ff42d85d4d5 core/certmanager.lua --- a/core/certmanager.lua Sun Oct 11 14:03:53 2015 +0200 +++ b/core/certmanager.lua Sun Oct 11 19:44:15 2015 +0200 @@ -101,6 +101,8 @@ for option in pairs(path_options) do if type(user_ssl_config[option]) == "string" then user_ssl_config[option] = resolve_path(config_path, user_ssl_config[option]); + else + user_ssl_config[option] = nil; end end