s2smanager: Remove unused function parameter
authorMatthew Wild <mwild1@gmail.com>
Fri, 22 Mar 2013 14:50:43 +0000
changeset 5367 56db8f2c8563
parent 5366 c1357b7fbca3
child 5368 ab31dbb3a415
s2smanager: Remove unused function parameter
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;