diff options
author | Waqas Hussain <waqas20@gmail.com> | 2010-12-27 19:57:04 +0500 |
---|---|---|
committer | Waqas Hussain <waqas20@gmail.com> | 2010-12-27 19:57:04 +0500 |
commit | 1865c2454bf4037fdc992485451de1fc5214c508 (patch) | |
tree | 61b9f26137fe3dadaf8d3d422355c7e0c8c9f2bd /util/sasl/plain.lua | |
parent | c1d6450cec9153c4b6c3d46ed1127a4eee092c50 (diff) | |
download | prosody-1865c2454bf4037fdc992485451de1fc5214c508.tar.gz prosody-1865c2454bf4037fdc992485451de1fc5214c508.zip |
util.sasl.*, mod_auth_*, mod_saslauth: Pass SASL handler as first parameter to SASL profile callbacks.
Diffstat (limited to 'util/sasl/plain.lua')
-rw-r--r-- | util/sasl/plain.lua | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/util/sasl/plain.lua b/util/sasl/plain.lua index 1a2ba01e..d6ebe304 100644 --- a/util/sasl/plain.lua +++ b/util/sasl/plain.lua @@ -57,10 +57,10 @@ local function plain(self, message) local correct, state = false, false; if self.profile.plain then local correct_password; - correct_password, state = self.profile.plain(authentication, self.realm); + correct_password, state = self.profile.plain(self, authentication, self.realm); correct = (correct_password == password); elseif self.profile.plain_test then - correct, state = self.profile.plain_test(authentication, password, self.realm); + correct, state = self.profile.plain_test(self, authentication, password, self.realm); end self.username = authentication |