mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 21:57:45 +03:00
mod_saslauth: Remove useless import of, and call to nodeprep.
This commit is contained in:
parent
807c896ee6
commit
621f44b146
1 changed files with 0 additions and 3 deletions
|
@ -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 });
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue