Software /
code /
prosody-modules
Changeset
1199:5d46281a5d23
mod_auth_imap: Minor cleanup of imports
author | Matthew Wild <mwild1@gmail.com> |
---|---|
date | Thu, 26 Sep 2013 18:12:27 +0100 |
parents | 1198:b21bd39c8a12 |
children | 1200:34216cdffda6 |
files | mod_auth_imap/auth_imap/sasl_imap.lib.lua |
diffstat | 1 files changed, 1 insertions(+), 2 deletions(-) [+] |
line wrap: on
line diff
--- a/mod_auth_imap/auth_imap/sasl_imap.lib.lua Thu Sep 26 18:11:44 2013 +0100 +++ b/mod_auth_imap/auth_imap/sasl_imap.lib.lua Thu Sep 26 18:12:27 2013 +0100 @@ -7,9 +7,8 @@ local setmetatable = setmetatable; -local s_match, s_gmatch = string.match, string.gmatch +local s_match = string.match; local t_concat = table.concat; -local m_random = math.random; local tostring, tonumber = tostring, tonumber; local socket = require "socket"