util.sasl: Fix logic for when mechanisms with channel binding support are offered

This commit is contained in:
Kim Alvefur 2014-03-22 14:45:04 +01:00
parent 9ea9c5719a
commit add9033b9b

View file

@ -100,14 +100,16 @@ end
function method:mechanisms() function method:mechanisms()
local current_mechs = {}; local current_mechs = {};
for mech, _ in pairs(self.mechs) do for mech, _ in pairs(self.mechs) do
if mechanism_channelbindings[mech] and self.profile.cb then if mechanism_channelbindings[mech] then
local ok = false; if self.profile.cb then
for cb_name, _ in pairs(self.profile.cb) do local ok = false;
if mechanism_channelbindings[mech][cb_name] then for cb_name, _ in pairs(self.profile.cb) do
ok = true; if mechanism_channelbindings[mech][cb_name] then
ok = true;
end
end end
if ok == true then current_mechs[mech] = true; end
end end
if ok == true then current_mechs[mech] = true; end
else else
current_mechs[mech] = true; current_mechs[mech] = true;
end end