# HG changeset patch # User Kim Alvefur # Date 1652536343 -7200 # Node ID 7406039021d848b3681dba5b6f220f26e42e854c # Parent 1a58345d91a93eb687e48eef7aafd852b7caba56 mod_auth_dovecot: Fix compat with Lua 5.2+ move of unpack() (thanks Tom) diff -r 1a58345d91a9 -r 7406039021d8 mod_auth_dovecot/auth_dovecot/sasl_dovecot.lib.lua --- a/mod_auth_dovecot/auth_dovecot/sasl_dovecot.lib.lua Sat May 14 15:50:44 2022 +0200 +++ b/mod_auth_dovecot/auth_dovecot/sasl_dovecot.lib.lua Sat May 14 15:52:23 2022 +0200 @@ -24,6 +24,7 @@ local t_concat = table.concat; local m_random = math.random; local tostring, tonumber = tostring, tonumber; +local unpack = table.unpack or unpack; local socket = require "socket"