From: Andrew Lewis Date: Thu, 23 Jan 2020 19:23:25 +0000 (+0200) Subject: [Minor] Fix previous commit X-Git-Tag: 2.3~54^2 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=a114f1b6cdf200327716b6857518162d33349d5f;p=rspamd.git [Minor] Fix previous commit --- diff --git a/lualib/lua_cfg_transform.lua b/lualib/lua_cfg_transform.lua index bdcc82635..33c24875b 100644 --- a/lualib/lua_cfg_transform.lua +++ b/lualib/lua_cfg_transform.lua @@ -451,7 +451,7 @@ return function(cfg) if cfg[mod].sign_authenticated ~= nil then logger.warnx(rspamd_config, 'both auth_only (%s) and sign_authenticated (%s) for %s are specified, prefer auth_only', cfg[mod].auth_only, cfg[mod].sign_authenticated, mod) end - cfg.[mod].sign_authenticated = cfg.[mod].auth_only + cfg[mod].sign_authenticated = cfg[mod].auth_only end end end