# HG changeset patch # User Kim Alvefur # Date 1575905988 -3600 # Node ID 79c568d4146c220720479f4cbe20c9705021c367 # Parent d302fc74946415691f4a1c8c5e42f13db1804fe9 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. diff -r d302fc749464 -r 79c568d4146c util/sasl/scram.lua --- a/util/sasl/scram.lua Mon Dec 09 12:44:43 2019 +0000 +++ b/util/sasl/scram.lua Mon Dec 09 16:39:48 2019 +0100 @@ -125,6 +125,7 @@ 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=([^,]*),?.*)$");