mod_saslauth: Remove useless import of, and call to nodeprep.
authorKim Alvefur <zash@zash.se>
Sun, 12 Feb 2012 15:14:35 +0100
changeset 4506 6643c9753453
parent 4505 b1e10c327d66
child 4507 32177c680d2a
child 4508 b9e0bd59d817
mod_saslauth: Remove useless import of, and call to nodeprep.
plugins/mod_saslauth.lua
--- a/plugins/mod_saslauth.lua	Sun Feb 12 15:08:12 2012 +0100
+++ b/plugins/mod_saslauth.lua	Sun Feb 12 15:14:35 2012 +0100
@@ -16,7 +16,6 @@
 
 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 @@
 		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 });