Software / code / prosody
Changeset
5367:56db8f2c8563
s2smanager: Remove unused function parameter
| author | Matthew Wild <mwild1@gmail.com> |
|---|---|
| date | Fri, 22 Mar 2013 14:50:43 +0000 |
| parents | 5366:c1357b7fbca3 |
| children | 5368:ab31dbb3a415 |
| files | core/s2smanager.lua |
| diffstat | 1 files changed, 1 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/core/s2smanager.lua Fri Mar 22 14:50:29 2013 +0000 +++ b/core/s2smanager.lua Fri Mar 22 14:50:43 2013 +0000 @@ -38,7 +38,7 @@ return session; end -function new_outgoing(from_host, to_host, connect) +function new_outgoing(from_host, to_host) local host_session = { to_host = to_host, from_host = from_host, host = from_host, notopen = true, type = "s2sout_unauthed", direction = "outgoing" }; hosts[from_host].s2sout[to_host] = host_session;