diff options
author | Kim Alvefur <zash@zash.se> | 2012-02-12 15:14:35 +0100 |
---|---|---|
committer | Kim Alvefur <zash@zash.se> | 2012-02-12 15:14:35 +0100 |
commit | bf9e4a5cab937b3bae474069a9fc3f94da67ee2d (patch) | |
tree | 807a0a9900abc59b652ef324467036a0878fdf51 /plugins | |
parent | 1df83a16325b9416cd9a22cc3b7a39f8c92ad3ad (diff) | |
download | prosody-bf9e4a5cab937b3bae474069a9fc3f94da67ee2d.tar.gz prosody-bf9e4a5cab937b3bae474069a9fc3f94da67ee2d.zip |
mod_saslauth: Remove useless import of, and call to nodeprep.
Diffstat (limited to 'plugins')
-rw-r--r-- | plugins/mod_saslauth.lua | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/plugins/mod_saslauth.lua b/plugins/mod_saslauth.lua index 2b23e33c..7708572a 100644 --- a/plugins/mod_saslauth.lua +++ b/plugins/mod_saslauth.lua @@ -16,7 +16,6 @@ local base64 = require "util.encodings".base64; local cert_verify_identity = require "util.x509".verify_identity; -local nodeprep = require "util.encodings".stringprep.nodeprep; local usermanager_get_sasl_handler = require "core.usermanager".get_sasl_handler; local tostring = tostring; @@ -51,8 +50,6 @@ local function handle_status(session, status, ret, err_msg) module:fire_event("authentication-failure", { session = session, condition = ret, text = err_msg }); session.sasl_handler = session.sasl_handler:clean_clone(); elseif status == "success" then - local username = nodeprep(session.sasl_handler.username); - local ok, err = sm_make_authenticated(session, session.sasl_handler.username); if ok then module:fire_event("authentication-success", { session = session }); |