diff options
author | Matthew Wild <mwild1@gmail.com> | 2025-03-31 17:30:50 +0100 |
---|---|---|
committer | Matthew Wild <mwild1@gmail.com> | 2025-03-31 17:30:50 +0100 |
commit | f0042849ba7629edd6404179c59fff7b69536d44 (patch) | |
tree | 57f5ce96f3e2d027eea5ee432b4a45e86960b987 /util | |
parent | 4f94d2425d03c983e8071c67f15de9af4191d9b4 (diff) | |
download | prosody-f0042849ba7629edd6404179c59fff7b69536d44.tar.gz prosody-f0042849ba7629edd6404179c59fff7b69536d44.zip |
mod_admin_shell, prosodyctl shell: Report command failure when no password entered (fixes #1907)
Diffstat (limited to 'util')
-rw-r--r-- | util/prosodyctl/shell.lua | 6 |
1 files changed, 5 insertions, 1 deletions
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); |