Changeset

2023:a3bf6cb12752

prosody: Use rawget to test for the existence of ssl (LuaSec) so we don't look for a nil global
author Matthew Wild <mwild1@gmail.com>
date Tue, 20 Oct 2009 13:25:29 +0100
parents 2022:9cbf4e8cb0ed
children 2024:46a9c7c99476
files prosody
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/prosody	Mon Oct 19 21:08:40 2009 +0100
+++ b/prosody	Tue Oct 20 13:25:29 2009 +0100
@@ -202,7 +202,7 @@
 	prosody.events.fire_event("server-starting");
 
 	-- Load SSL settings from config, and create a ctx table
-	local global_ssl_ctx = ssl and config.get("*", "core", "ssl");
+	local global_ssl_ctx = rawget(_G, "ssl") and config.get("*", "core", "ssl");
 	if global_ssl_ctx then
 		local default_ssl_ctx = { mode = "server", protocol = "sslv23", capath = "/etc/ssl/certs", verify = "none"; };
 		setmetatable(global_ssl_ctx, { __index = default_ssl_ctx });