diff options
author | Tobias Markmann <tm@ayena.de> | 2008-11-23 22:56:07 +0100 |
---|---|---|
committer | Tobias Markmann <tm@ayena.de> | 2008-11-23 22:56:07 +0100 |
commit | 009fe2e38b56bb63bc3bad84b2f43cd0ac123978 (patch) | |
tree | c24fd6cd27ac7011847fe04853a9ba8e677d3a07 /util | |
parent | 8e11baf028003ad7354752c32682505976d01af3 (diff) | |
download | prosody-009fe2e38b56bb63bc3bad84b2f43cd0ac123978.tar.gz prosody-009fe2e38b56bb63bc3bad84b2f43cd0ac123978.zip |
Some ends too much.
Diffstat (limited to 'util')
-rw-r--r-- | util/sasl.lua | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/util/sasl.lua b/util/sasl.lua index cc2456c7..7cabd8b3 100644 --- a/util/sasl.lua +++ b/util/sasl.lua @@ -28,7 +28,7 @@ local function new_plain(realm, password_handler) local password_encoding, correct_password = self.password_handler(authentication, self.realm, "PLAIN") - if correct_password == nil then return "failure", "not-authorized" end + if correct_password == nil then return "failure", "not-authorized" elseif correct_password == false then return "failure", "account-disabled" end local claimed_password = "" @@ -126,7 +126,7 @@ local function new_digest_md5(realm, password_handler) --TODO maybe realm support self.username = response["username"] local password_encoding, Y = self.password_handler(response["username"], response["realm"], "DIGEST-MD5") - if Y == nil then return "failure", "not-authorized" end + if Y == nil then return "failure", "not-authorized" elseif Y == false then return "failure", "account-disabled" end local A1 = Y..":"..response["nonce"]..":"..response["cnonce"]--:authzid |