diff -r b8d2168dc9c3 -r dbfdcb75209a util/sasl_cyrus.lua --- a/util/sasl_cyrus.lua Mon Dec 28 20:21:49 2009 +0100 +++ b/util/sasl_cyrus.lua Mon Dec 28 22:08:32 2009 +0100 @@ -67,14 +67,14 @@ for w in s_gmatch(cyrus_mechs, "[^ ]+") do mechanisms[w] = true; end - self.mechanisms = mechanisms + self.mechs = mechanisms return array.collect(keys(mechanisms)); end -- select a mechanism to use function method:select(mechanism) self.mechanism = mechanism; - return self.mechanisms[mechanism]; + return self.mechs[mechanism]; end -- feed new messages to process into the library