Stopped using the lbase64 library

This commit is contained in:
Waqas Hussain 2008-11-28 00:48:16 +05:00
parent 4287b7555a
commit 15153c947c
2 changed files with 1 additions and 2 deletions

View file

@ -3,7 +3,6 @@ The easiest way to install dependencies is using the luarocks tool.
Rocks:
luaexpat
luasocket
lbase64
Non-rocks:
LuaSec for SSL connections

View file

@ -2,7 +2,7 @@
local st = require "util.stanza";
local sm_bind_resource = require "core.sessionmanager".bind_resource;
local jid
local base64 = require "base64"
local base64 = require "util.encodings".base64;
local usermanager_validate_credentials = require "core.usermanager".validate_credentials;
local t_concat, t_insert = table.concat, table.insert;