prosody: Use rawget to test for the existence of ssl (LuaSec) so we don't look for a nil global

Tue, 20 Oct 2009 13:25:29 +0100

author
Matthew Wild <mwild1@gmail.com>
date
Tue, 20 Oct 2009 13:25:29 +0100
changeset 2023
a3bf6cb12752
parent 2022
9cbf4e8cb0ed
child 2024
46a9c7c99476

prosody: Use rawget to test for the existence of ssl (LuaSec) so we don't look for a nil global

prosody file | annotate | diff | comparison | revisions
--- 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 });

mercurial