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 | aa144af70e8b56d9d5a31de752e502aabb074fa0 (patch) | |
tree | 1f52b81f322f1d9046be7a2135eba8fc3f908221 /util/sasl/plain.lua | |
parent | a4d4abfeb78ff6e1de6d669679e78b6c88ed77e1 (diff) | |
download | prosody-aa144af70e8b56d9d5a31de752e502aabb074fa0.tar.gz prosody-aa144af70e8b56d9d5a31de752e502aabb074fa0.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 |