aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTobias Markmann <tm@ayena.de>2008-08-26 14:11:52 +0200
committerTobias Markmann <tm@ayena.de>2008-08-26 14:11:52 +0200
commit53b44292cbf272619c73a04fd7bfeaa58e32b8be (patch)
tree6533866a3f0ec7aac88e5b16f72d41d3a4c5ff93
parent0b6ee8b38ad4a7bc89abb54df4c485ab2bb944c9 (diff)
downloadprosody-53b44292cbf272619c73a04fd7bfeaa58e32b8be.tar.gz
prosody-53b44292cbf272619c73a04fd7bfeaa58e32b8be.zip
module table was missing
-rw-r--r--util/sasl.lua1
1 files changed, 1 insertions, 0 deletions
diff --git a/util/sasl.lua b/util/sasl.lua
index 6e85c985..fb3aff94 100644
--- a/util/sasl.lua
+++ b/util/sasl.lua
@@ -1,4 +1,5 @@
require "base64"
+sasl = {}
function sasl:new_plain(onAuth, onSuccess, onFail, onWrite)
local object = { mechanism = "PLAIN", onAuth = onAuth, onSuccess = onSuccess, onFail = onFail,