# HG changeset patch # User Matthew Wild # Date 1363963843 0 # Node ID 56db8f2c856388b5f7032f08f24e11ba3a4d11b6 # Parent c1357b7fbca322659e635d1d68675edd3f00c6a4 s2smanager: Remove unused function parameter diff -r c1357b7fbca3 -r 56db8f2c8563 core/s2smanager.lua --- 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;