# HG changeset patch # User Tobias Markmann # Date 1249758798 -7200 # Node ID cf9220a364cd2ffecf66305ea53e1178b7151e5f # Parent 8ba5752851dca9d7171e94209624ef1152871413 Fixing a SASL issue by always passing the realm from SASL framework init to the handlers. diff -r 8ba5752851dc -r cf9220a364cd util/sasl.lua --- a/util/sasl.lua Fri Aug 07 11:32:47 2009 +0100 +++ b/util/sasl.lua Sat Aug 08 21:13:18 2009 +0200 @@ -198,7 +198,7 @@ --TODO maybe realm support self.username = response["username"]; - local password_encoding, Y = self.credentials_handler("DIGEST-MD5", response["username"], to_unicode(domain), response["realm"], decoder); + local password_encoding, Y = self.credentials_handler("DIGEST-MD5", response["username"], self.realm, response["realm"], decoder); if Y == nil then return "failure", "not-authorized" elseif Y == false then return "failure", "account-disabled" end local A1 = "";