aboutsummaryrefslogtreecommitdiffstats
path: root/core
diff options
context:
space:
mode:
authorMatthew Wild <mwild1@gmail.com>2008-10-23 19:10:16 +0100
committerMatthew Wild <mwild1@gmail.com>2008-10-23 19:10:16 +0100
commit162e3fb849f47089ad6114041374d66d48638db3 (patch)
tree57fbd7177e9656436978d5e01ec5d8a4630f270f /core
parentce86d8badcc0f93ea14f71abad9161cee80ad823 (diff)
downloadprosody-162e3fb849f47089ad6114041374d66d48638db3.tar.gz
prosody-162e3fb849f47089ad6114041374d66d48638db3.zip
No need to comment out s2s in this branch
Diffstat (limited to 'core')
-rw-r--r--core/stanza_router.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/core/stanza_router.lua b/core/stanza_router.lua
index 3814ffdf..f18e706d 100644
--- a/core/stanza_router.lua
+++ b/core/stanza_router.lua
@@ -9,7 +9,7 @@ local log = require "util.logger".init("stanzarouter")
local st = require "util.stanza";
local send = require "core.sessionmanager".send_to_session;
--- local send_s2s = require "core.s2smanager".send_to_host;
+local send_s2s = require "core.s2smanager".send_to_host;
local user_exists = require "core.usermanager".user_exists;
local jid_split = require "util.jid".split;