# HG changeset patch # User Kim Alvefur # Date 1679152412 -3600 # Node ID 59478b295137d859e8b214699e6d1e8fb3a7f38b # Parent d2c1c327a4d1f8c2976bafd75584c49c5d47fec6 mod_auth_internal_hashed: Shorten call path Why did it call a function defined in the same module through usermanager? diff -r d2c1c327a4d1 -r 59478b295137 plugins/mod_auth_internal_hashed.lua --- a/plugins/mod_auth_internal_hashed.lua Thu Mar 16 13:57:30 2023 +0100 +++ b/plugins/mod_auth_internal_hashed.lua Sat Mar 18 16:13:32 2023 +0100 @@ -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 @@ 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);