diff options
author | Tobias Markmann <tm@ayena.de> | 2009-12-22 21:08:58 +0100 |
---|---|---|
committer | Tobias Markmann <tm@ayena.de> | 2009-12-22 21:08:58 +0100 |
commit | ebc2fcb9e2a38726852b3b51f2c363d2d39be218 (patch) | |
tree | ec97d1925564aef30714059ca4ff90e5290b2875 /util/sasl_cyrus.lua | |
parent | 9dc560b2a89fad84e576287143e4e35b037f0d7f (diff) | |
download | prosody-ebc2fcb9e2a38726852b3b51f2c363d2d39be218.tar.gz prosody-ebc2fcb9e2a38726852b3b51f2c363d2d39be218.zip |
util.sasl_cyrus: Further fixing and cleanup.
Diffstat (limited to 'util/sasl_cyrus.lua')
-rw-r--r-- | util/sasl_cyrus.lua | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/util/sasl_cyrus.lua b/util/sasl_cyrus.lua index 49c3d433..9a81eb97 100644 --- a/util/sasl_cyrus.lua +++ b/util/sasl_cyrus.lua @@ -19,17 +19,17 @@ local tostring = tostring; local pairs, ipairs = pairs, ipairs; local t_insert, t_concat = table.insert, table.concat; local s_match = string.match; +local setmetatable = setmetatable local keys = keys; local print = print +local pcall = pcall module "sasl_cyrus" local method = {}; method.__index = method; -local mechanisms = {}; -local backend_mechanism = {}; pcall(cyrussasl.server_init, "prosody") |