diff options
author | Matthew Wild <mwild1@gmail.com> | 2010-12-24 04:48:38 +0000 |
---|---|---|
committer | Matthew Wild <mwild1@gmail.com> | 2010-12-24 04:48:38 +0000 |
commit | 40fc886767dd4f4371d1400c9534c8979d5b50d1 (patch) | |
tree | 99cf9a98e60005701d98acf7673c172c5ba0460d | |
parent | d47a1f622b276c68fd7bff32da24315d8788317c (diff) | |
download | prosody-40fc886767dd4f4371d1400c9534c8979d5b50d1.tar.gz prosody-40fc886767dd4f4371d1400c9534c8979d5b50d1.zip |
s2smanager: Add a missing semi-colon
-rw-r--r-- | core/s2smanager.lua | 2 |
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); |