diff options
author | Matthew Wild <mwild1@gmail.com> | 2008-10-23 19:10:16 +0100 |
---|---|---|
committer | Matthew Wild <mwild1@gmail.com> | 2008-10-23 19:10:16 +0100 |
commit | 162e3fb849f47089ad6114041374d66d48638db3 (patch) | |
tree | 57fbd7177e9656436978d5e01ec5d8a4630f270f | |
parent | ce86d8badcc0f93ea14f71abad9161cee80ad823 (diff) | |
download | prosody-162e3fb849f47089ad6114041374d66d48638db3.tar.gz prosody-162e3fb849f47089ad6114041374d66d48638db3.zip |
No need to comment out s2s in this branch
-rw-r--r-- | core/stanza_router.lua | 2 |
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; |