prosody: Only set the ssl_ctx for 'ssl' connections

Sun, 31 Jan 2010 16:22:52 +0000

author
Matthew Wild <mwild1@gmail.com>
date
Sun, 31 Jan 2010 16:22:52 +0000
changeset 2548
e12acef85166
parent 2547
b2cb0935f158
child 2549
55a50e75c0c0

prosody: Only set the ssl_ctx for 'ssl' connections

prosody file | annotate | diff | comparison | revisions
--- a/prosody	Sun Jan 31 15:44:55 2010 +0000
+++ b/prosody	Sun Jan 31 16:22:52 2010 +0000
@@ -206,7 +206,7 @@
 					log("error", "Non-numeric "..ports_option..": "..tostring(port));
 				else
 					cl.start(listener, { 
-						ssl = conntype ~= "tcp" and global_ssl_ctx,
+						ssl = conntype == "ssl" and global_ssl_ctx,
 						port = port,
 						interface = (option and config.get("*", "core", option.."_interface"))
 							or cl.get(listener).default_interface

mercurial