s2smanager: Fix traceback when socket.tcp6 isn't available

This commit is contained in:
Matthew Wild 2012-02-25 02:03:26 +00:00
parent bc79812f6c
commit ba9e28535b

View file

@ -432,7 +432,7 @@ function make_connect(host_session, connect_host, connect_port)
local conn, handler;
if connect_host.proto == "IPv4" then
conn, handler = socket.tcp();
else
elseif socket.tcp6 then
conn, handler = socket.tcp6();
end