s2smanager: Remove unused function parameter

This commit is contained in:
Matthew Wild 2013-03-22 14:50:43 +00:00
parent 5f6e150c61
commit c908af2a7d

View file

@ -38,7 +38,7 @@ function new_incoming(conn)
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;