aboutsummaryrefslogtreecommitdiffstats
path: root/plugins/mod_dialback.lua
diff options
context:
space:
mode:
authorKim Alvefur <zash@zash.se>2012-03-03 00:01:10 +0100
committerKim Alvefur <zash@zash.se>2012-03-03 00:01:10 +0100
commit11993525c0a7cae7fe52aba0bafdfca912973499 (patch)
tree5f560562015b55ebeb1b80c40cbf09dbd810f45c /plugins/mod_dialback.lua
parentf1e9bb68bd0f366d060c1834dd4955e5dbb1efc4 (diff)
downloadprosody-11993525c0a7cae7fe52aba0bafdfca912973499.tar.gz
prosody-11993525c0a7cae7fe52aba0bafdfca912973499.zip
mod_dialback: Remove unused import of s2smanager.send_to_host()
Diffstat (limited to 'plugins/mod_dialback.lua')
-rw-r--r--plugins/mod_dialback.lua2
1 files changed, 0 insertions, 2 deletions
diff --git a/plugins/mod_dialback.lua b/plugins/mod_dialback.lua
index 977e58c3..eccfd3d6 100644
--- a/plugins/mod_dialback.lua
+++ b/plugins/mod_dialback.lua
@@ -9,7 +9,6 @@
local format = string.format;
local hosts = _G.hosts;
-local send_s2s = require "core.s2smanager".send_to_host;
local s2s_make_authenticated = require "core.s2smanager".make_authenticated;
local log = module._log;
@@ -87,7 +86,6 @@ module:hook("stanza/jabber:server:dialback:result", function(event)
end
origin.log("debug", "asking %s if key %s belongs to them", attr.from, stanza[1]);
- --send_s2s(attr.to, attr.from,
origin.send(st.stanza("db:verify", { from = attr.to, to = attr.from, id = origin.streamid }):text(stanza[1]));
return true;
end