aboutsummaryrefslogtreecommitdiffstats
path: root/plugins
diff options
context:
space:
mode:
authorTobias Markmann <tm@ayena.de>2009-07-05 19:05:03 +0200
committerTobias Markmann <tm@ayena.de>2009-07-05 19:05:03 +0200
commit4ce313959b678592a5fe0ef30b6813d058de45af (patch)
tree3b87732421cec8f2724de921aef34ac083a2b88c /plugins
parentef8c8fb19f409ea78cdbe301b8986666363fc5f8 (diff)
downloadprosody-4ce313959b678592a5fe0ef30b6813d058de45af.tar.gz
prosody-4ce313959b678592a5fe0ef30b6813d058de45af.zip
Remove to-unicode conversion because it's done in sasl.lua now.
Diffstat (limited to 'plugins')
-rw-r--r--plugins/mod_saslauth.lua3
1 files changed, 1 insertions, 2 deletions
diff --git a/plugins/mod_saslauth.lua b/plugins/mod_saslauth.lua
index 8093728e..81113d7c 100644
--- a/plugins/mod_saslauth.lua
+++ b/plugins/mod_saslauth.lua
@@ -12,7 +12,6 @@ local st = require "util.stanza";
local sm_bind_resource = require "core.sessionmanager".bind_resource;
local sm_make_authenticated = require "core.sessionmanager".make_authenticated;
local base64 = require "util.encodings".base64;
-local to_unicode = require "util.encodings".idna.to_unicode;
local datamanager_load = require "util.datamanager".load;
local usermanager_validate_credentials = require "core.usermanager".validate_credentials;
@@ -66,7 +65,7 @@ local function handle_status(session, status)
end
local function password_callback(node, hostname, realm, mechanism, decoder)
- local password = (datamanager_load(node, to_unicode(hostname), "accounts") or {}).password; -- FIXME handle hashed passwords
+ local password = (datamanager_load(node, hostname, "accounts") or {}).password; -- FIXME handle hashed passwords
local func = function(x) return x; end;
if password then
if mechanism == "PLAIN" then