# HG changeset patch # User Kim Alvefur # Date 1748700438 -7200 # Node ID 9014c95c454982d46a2da9a8f51e69f3873058e9 # Parent 2505542c6c50d7d781a07c124f69becc30ac1e4f mod_http_oauth2: Fix indentation diff -r 2505542c6c50 -r 9014c95c4549 mod_http_oauth2/mod_http_oauth2.lua --- a/mod_http_oauth2/mod_http_oauth2.lua Sat May 31 13:36:39 2025 +0200 +++ b/mod_http_oauth2/mod_http_oauth2.lua Sat May 31 16:07:18 2025 +0200 @@ -399,11 +399,11 @@ end local function make_client_secret(client_id) --> client_secret - return hashes.hmac_sha256(verification_key, client_id, true); + return hashes.hmac_sha256(verification_key, client_id, true); end local function verify_client_secret(client_id, client_secret) - return hashes.equals(make_client_secret(client_id), client_secret); + return hashes.equals(make_client_secret(client_id), client_secret); end function grant_type_handlers.password(params, client)