# HG changeset patch # User Kim Alvefur # Date 1678971142 -3600 # Node ID e77c607e8da88cdadf5e7a8b070c41224fbd0601 # Parent 2aebd9bf02fcbf7f4a8cf7a20bd2fd8893bb42d1 util.sasl.scram: Fix off-by-one indentation diff -r 2aebd9bf02fc -r e77c607e8da8 util/sasl/scram.lua --- a/util/sasl/scram.lua Thu Mar 16 13:45:49 2023 +0100 +++ b/util/sasl/scram.lua Thu Mar 16 13:52:22 2023 +0100 @@ -112,8 +112,8 @@ if support_channel_binding and gs2_cbind_flag == "y" then -- "y" -> client does support channel binding -- but thinks the server does not. - return "failure", "malformed-request"; - end + return "failure", "malformed-request"; + end if gs2_cbind_flag == "n" then -- "n" -> client doesn't support channel binding.