aboutsummaryrefslogtreecommitdiffstats
path: root/util/sasl
diff options
context:
space:
mode:
authorKim Alvefur <zash@zash.se>2019-12-09 16:39:48 +0100
committerKim Alvefur <zash@zash.se>2019-12-09 16:39:48 +0100
commit6890707e43ca5daa277d19b79acb99b7e93f397a (patch)
tree9c598098f717146497555546b3e2f455c5bcd300 /util/sasl
parentfbb0bbe1b4a9bda0dcfd247fb9412124396c332f (diff)
downloadprosody-6890707e43ca5daa277d19b79acb99b7e93f397a.tar.gz
prosody-6890707e43ca5daa277d19b79acb99b7e93f397a.zip
util.sasl.scram: Ignore unused authzid variable (strict lint)
It would be nice if authzid was passed down into the stack and could be used by plugins for things.
Diffstat (limited to 'util/sasl')
-rw-r--r--util/sasl/scram.lua1
1 files changed, 1 insertions, 0 deletions
diff --git a/util/sasl/scram.lua b/util/sasl/scram.lua
index 1d1590e8..e2ce00f5 100644
--- a/util/sasl/scram.lua
+++ b/util/sasl/scram.lua
@@ -125,6 +125,7 @@ local function scram_gen(hash_name, H_f, HMAC_f, get_auth_db)
local client_first_message = message;
-- TODO: fail if authzid is provided, since we don't support them yet
+ -- luacheck: ignore 211/authzid
local gs2_header, gs2_cbind_flag, gs2_cbind_name, authzid, client_first_message_bare, username, clientnonce
= s_match(client_first_message, "^(([pny])=?([^,]*),([^,]*),)(m?=?[^,]*,?n=([^,]*),r=([^,]*),?.*)$");