# HG changeset patch # User Menel # Date 1773384876 -3600 # Node ID 5364bdaa404d0a2cf847d2637b0529c03a4c8218 # Parent d2f3a1ff143835c5361cde81fcc1aaa93677dff9 mod_sasl2_fast/mod_sasl2_fast.lua: fix luacheck warning too long line diff -r d2f3a1ff1438 -r 5364bdaa404d mod_sasl2_fast/mod_sasl2_fast.lua --- a/mod_sasl2_fast/mod_sasl2_fast.lua Fri Mar 13 07:46:57 2026 +0100 +++ b/mod_sasl2_fast/mod_sasl2_fast.lua Fri Mar 13 07:54:36 2026 +0100 @@ -213,7 +213,8 @@ local cb_data; if cb_name then if not sasl_handler.profile.cb then - module:log("warn", "Attempt to use channel binding %s with SASL profile that does not support any channel binding (FAST: %s)", cb_name, sasl_handler.fast); + local msg = "Attempt to use channel binding %s with SASL profile that does not support any channel binding (FAST: %s)" + module:log("warn", msg, cb_name, sasl_handler.fast) return "failure", "malformed-request"; elseif not sasl_handler.profile.cb[cb_name] then module:log("warn", "SASL profile does not support %s channel binding (FAST: %s)", cb_name, sasl_handler.fast);