diff options
author | Ted Trask <ttrask01@yahoo.com> | 2013-10-09 20:48:17 +0000 |
---|---|---|
committer | Ted Trask <ttrask01@yahoo.com> | 2013-10-09 20:48:17 +0000 |
commit | 42aaaedefa366ca45f8cdc02be43968a02e3956c (patch) | |
tree | a393eadf4b1871e18fba6ecd63d76295db7e9c4f /authenticator-freeswitch-vmail.lua | |
parent | 99fe028c64ac14ca89e355ba2473bc36b52c91e3 (diff) | |
download | acf-freeswitch-vmail-42aaaedefa366ca45f8cdc02be43968a02e3956c.tar.bz2 acf-freeswitch-vmail-42aaaedefa366ca45f8cdc02be43968a02e3956c.tar.xz |
Change use of require to work with Lua 5.2
Diffstat (limited to 'authenticator-freeswitch-vmail.lua')
-rw-r--r-- | authenticator-freeswitch-vmail.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/authenticator-freeswitch-vmail.lua b/authenticator-freeswitch-vmail.lua index 38e6342..423121d 100644 --- a/authenticator-freeswitch-vmail.lua +++ b/authenticator-freeswitch-vmail.lua @@ -1,7 +1,7 @@ -- Copy of authenticator-plaintext, plus added authentication from voicemail DB module (..., package.seeall) -require("md5") +md5 = require("md5") list_fields = function(self, tabl) return nil |