prosodyctl: Quit when user pressed ^C in password prompts

This commit is contained in:
Matthew Wild 2009-07-08 16:53:59 +01:00
parent 30f4284b66
commit 453b76ef8c

View file

@ -158,6 +158,10 @@ local function read_password()
while true do
io.write("Enter new password: ");
password = getpass();
if not password then
show_message("No password - cancelled");
return;
end
io.write("Retype new password: ");
if getpass() ~= password then
if not show_yesno [=[Passwords did not match, try again? [Y/n]]=] then