diff options
Diffstat (limited to 'core')
-rw-r--r-- | core/hostmanager.lua | 3 | ||||
-rw-r--r-- | core/s2smanager.lua | 2 |
2 files changed, 3 insertions, 2 deletions
diff --git a/core/hostmanager.lua b/core/hostmanager.lua index 0dd1d426..330a0d03 100644 --- a/core/hostmanager.lua +++ b/core/hostmanager.lua @@ -12,6 +12,7 @@ local events_new = require "util.events".new; local disco_items = require "util.multitable".new(); local NULL = {}; +local jid_split = require "util.jid".split; local uuid_gen = require "util.uuid".generate; local log = require "util.logger".init("hostmanager"); @@ -23,7 +24,7 @@ if not _G.prosody.incoming_s2s then end local incoming_s2s = _G.prosody.incoming_s2s; -local pairs, setmetatable = pairs, setmetatable; +local pairs, setmetatable, select = pairs, setmetatable, select; local tostring, type = tostring, type; module "hostmanager" diff --git a/core/s2smanager.lua b/core/s2smanager.lua index 158b5461..5907ff2f 100644 --- a/core/s2smanager.lua +++ b/core/s2smanager.lua @@ -99,7 +99,7 @@ function make_authenticated(session, host) else return false; end - session.log("debug", "connection %s->%s is now authenticated", session.from_host or "(unknown)", session.to_host or "(unknown)"); + session.log("debug", "connection %s->%s is now authenticated for %s", session.from_host or "(unknown)", session.to_host or "(unknown)", host); mark_connected(session); |