# HG changeset patch # User Matthew Wild # Date 1380215547 -3600 # Node ID 5d46281a5d23e03e00cbe72a1294a320b4689955 # Parent b21bd39c8a126f9b0bf4299916eced4dce884f5a mod_auth_imap: Minor cleanup of imports diff -r b21bd39c8a12 -r 5d46281a5d23 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"