prosody: Fixed a possible nil concatenation.

Wed, 16 Dec 2009 00:11:54 +0500

author
Waqas Hussain <waqas20@gmail.com>
date
Wed, 16 Dec 2009 00:11:54 +0500
changeset 2365
0bd8408a491c
parent 2364
b79e5ba69704
child 2366
c3a364342cb4

prosody: Fixed a possible nil concatenation.

prosody file | annotate | diff | comparison | revisions
--- a/prosody	Tue Dec 15 18:58:22 2009 +0000
+++ b/prosody	Wed Dec 16 00:11:54 2009 +0500
@@ -208,8 +208,8 @@
 					cl.start(listener, { 
 						ssl = conntype ~= "tcp" and global_ssl_ctx,
 						port = port,
-						interface = config.get("*", "core", option.."_interface") 
-							or cl.get(listener).default_interface 
+						interface = (option and config.get("*", "core", option.."_interface"))
+							or cl.get(listener).default_interface
 							or config.get("*", "core", "interface"),
 						type = conntype
 					});

mercurial