aboutsummaryrefslogtreecommitdiffstats
path: root/core/s2smanager.lua
diff options
context:
space:
mode:
authorMatthew Wild <mwild1@gmail.com>2010-12-24 04:48:38 +0000
committerMatthew Wild <mwild1@gmail.com>2010-12-24 04:48:38 +0000
commit40fc886767dd4f4371d1400c9534c8979d5b50d1 (patch)
tree99cf9a98e60005701d98acf7673c172c5ba0460d /core/s2smanager.lua
parentd47a1f622b276c68fd7bff32da24315d8788317c (diff)
downloadprosody-40fc886767dd4f4371d1400c9534c8979d5b50d1.tar.gz
prosody-40fc886767dd4f4371d1400c9534c8979d5b50d1.zip
s2smanager: Add a missing semi-colon
Diffstat (limited to 'core/s2smanager.lua')
-rw-r--r--core/s2smanager.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/core/s2smanager.lua b/core/s2smanager.lua
index dac95314..5dde476f 100644
--- a/core/s2smanager.lua
+++ b/core/s2smanager.lua
@@ -315,7 +315,7 @@ function make_connect(host_session, connect_host, connect_port)
local from_host, to_host = host_session.from_host, host_session.to_host;
- local conn, handler = socket.tcp()
+ local conn, handler = socket.tcp();
if not conn then
log("warn", "Failed to create outgoing connection, system error: %s", handler);