aboutsummaryrefslogtreecommitdiffstats
path: root/core
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
commitfd62766d148ecc8880083083eb874989c97710e4 (patch)
treeb146b72b39ed18b77380b1fa1b2f941bb11b473c /core
parent93e5343cdf8e9a10317c87a6ef768d475a7fc9de (diff)
downloadprosody-fd62766d148ecc8880083083eb874989c97710e4.tar.gz
prosody-fd62766d148ecc8880083083eb874989c97710e4.zip
s2smanager: Add a missing semi-colon
Diffstat (limited to 'core')
-rw-r--r--core/s2smanager.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/core/s2smanager.lua b/core/s2smanager.lua
index f2cee43e..a516797e 100644
--- a/core/s2smanager.lua
+++ b/core/s2smanager.lua
@@ -316,7 +316,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);