Mercurial > prosody-hg
diff prosody @ 2778:d591e2c90807
prosody: Fixed a possible nil concatenation.
| author | Waqas Hussain <waqas20@gmail.com> |
|---|---|
| date | Wed, 16 Dec 2009 00:11:54 +0500 |
| parents | 826f6fb7036d |
| children | 2419ca0bfab3 |
line wrap: on
line diff
--- a/prosody Thu Dec 10 22:13:04 2009 +0000 +++ b/prosody Wed Dec 16 00:11:54 2009 +0500 @@ -198,8 +198,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 });
