aboutsummaryrefslogtreecommitdiffstats
path: root/util
diff options
context:
space:
mode:
Diffstat (limited to 'util')
-rw-r--r--util/prosodyctl/check.lua2
-rw-r--r--util/prosodyctl/shell.lua6
2 files changed, 6 insertions, 2 deletions
diff --git a/util/prosodyctl/check.lua b/util/prosodyctl/check.lua
index 75ff5da4..622e475e 100644
--- a/util/prosodyctl/check.lua
+++ b/util/prosodyctl/check.lua
@@ -1313,7 +1313,7 @@ local function check(arg)
http_loaded = false;
end
if http_loaded and not x509_verify_identity(http_host, nil, cert) then
- print(" Not valid for HTTPS connections to "..host..".")
+ print(" Not valid for HTTPS connections to "..http_host..".")
cert_ok = false
end
if use_dane then
diff --git a/util/prosodyctl/shell.lua b/util/prosodyctl/shell.lua
index 31936989..4deb8615 100644
--- a/util/prosodyctl/shell.lua
+++ b/util/prosodyctl/shell.lua
@@ -134,7 +134,11 @@ local function start(arg) --luacheck: ignore 212/arg
end
if stanza.attr.type == "password" then
local password = human_io.read_password();
- client.send(st.stanza("repl-requested-input", { type = stanza.attr.type, id = stanza.attr.id }):text(password));
+ client.send(st.stanza("repl-requested-input", {
+ type = stanza.attr.type;
+ id = stanza.attr.id;
+ status = password and "submit" or "cancel";
+ }):text(password or ""));
else
io.stderr:write("Internal error - unexpected input request type "..tostring(stanza.attr.type).."\n");
os.exit(1);