diff options
author | Matthew Wild <mwild1@gmail.com> | 2025-02-15 16:48:11 +0000 |
---|---|---|
committer | Matthew Wild <mwild1@gmail.com> | 2025-02-15 16:48:11 +0000 |
commit | c7554fdba8b8f45115fd5cf55b3edc292f5213e8 (patch) | |
tree | 212aa0ebd87c1942184618479b40f197a7cb7e66 | |
parent | 500d0df0a4c11147eb5eca7aa60e9216b0e96624 (diff) | |
download | prosody-c7554fdba8b8f45115fd5cf55b3edc292f5213e8.tar.gz prosody-c7554fdba8b8f45115fd5cf55b3edc292f5213e8.zip |
prosodyctl: check: Fix variable name (thanks luacheck)
-rw-r--r-- | util/prosodyctl/check.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/util/prosodyctl/check.lua b/util/prosodyctl/check.lua index b601ee8b..a297fea5 100644 --- a/util/prosodyctl/check.lua +++ b/util/prosodyctl/check.lua @@ -1476,7 +1476,7 @@ local function check(arg) end end - function checks.features(host, quiet) + function checks.features(check_host, quiet) if not quiet then print("Feature report"); end |