From 9dd7ce434d2297ab807639722b3416600e1180cf Mon Sep 17 00:00:00 2001 From: Kim Alvefur Date: Sat, 18 Mar 2023 16:13:32 +0100 Subject: mod_auth_internal_hashed: Shorten call path Why did it call a function defined in the same module through usermanager? --- plugins/mod_auth_internal_hashed.lua | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/plugins/mod_auth_internal_hashed.lua b/plugins/mod_auth_internal_hashed.lua index cd5e9364..bc64e4f0 100644 --- a/plugins/mod_auth_internal_hashed.lua +++ b/plugins/mod_auth_internal_hashed.lua @@ -10,7 +10,6 @@ local max = math.max; local scram_hashers = require "util.sasl.scram".hashers; -local usermanager = require "core.usermanager"; local generate_uuid = require "util.uuid".generate; local new_sasl = require "util.sasl".new; local hex = require"util.hex"; @@ -163,8 +162,8 @@ end function provider.get_sasl_handler() local testpass_authentication_profile = { - plain_test = function(_, username, password, realm) - return usermanager.test_password(username, realm, password), provider.is_enabled(username); + plain_test = function(_, username, password) + return provider.test_password(username, password), provider.is_enabled(username); end, [scram_name] = function(_, username) local credentials = accounts:get(username); -- cgit v1.2.3