Software /
code /
prosody
Diff
core/s2smanager.lua @ 5367:56db8f2c8563
s2smanager: Remove unused function parameter
author | Matthew Wild <mwild1@gmail.com> |
---|---|
date | Fri, 22 Mar 2013 14:50:43 +0000 |
parent | 5366:c1357b7fbca3 |
child | 5447:92b88476873a |
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;