Software /
code /
prosody-modules
Changeset
4940:7406039021d8
mod_auth_dovecot: Fix compat with Lua 5.2+ move of unpack() (thanks Tom)
author | Kim Alvefur <zash@zash.se> |
---|---|
date | Sat, 14 May 2022 15:52:23 +0200 |
parents | 4939:1a58345d91a9 |
children | 4941:e7b9bc629ecc |
files | mod_auth_dovecot/auth_dovecot/sasl_dovecot.lib.lua |
diffstat | 1 files changed, 1 insertions(+), 0 deletions(-) [+] |
line wrap: on
line diff
--- 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"