Software /
code /
prosody
Changeset
2365:0bd8408a491c
prosody: Fixed a possible nil concatenation.
author | Waqas Hussain <waqas20@gmail.com> |
---|---|
date | Wed, 16 Dec 2009 00:11:54 +0500 |
parents | 2364:b79e5ba69704 |
children | 2366:c3a364342cb4 |
files | prosody |
diffstat | 1 files changed, 2 insertions(+), 2 deletions(-) [+] |
line wrap: on
line diff
--- 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 });