mod_auth_imap: Minor cleanup of imports
authorMatthew Wild <mwild1@gmail.com>
Thu, 26 Sep 2013 18:12:27 +0100
changeset 1199 5d46281a5d23
parent 1198 b21bd39c8a12
child 1200 34216cdffda6
mod_auth_imap: Minor cleanup of imports
mod_auth_imap/auth_imap/sasl_imap.lib.lua
--- 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"