X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?p=elogind.git;a=blobdiff_plain;f=src%2Ffirstboot%2Ffirstboot.c;h=6b0d2fc86af960ad0196515084ab72f2cb058e14;hp=f586c2ef7fca900354f662606aba830e8973f76b;hb=64845bdc829d6a6179d0762b7e97ef23828562a3;hpb=75a0da952f603006d6b3535ecaf8ebe2bded30e7 diff --git a/src/firstboot/firstboot.c b/src/firstboot/firstboot.c index f586c2ef7..6b0d2fc86 100644 --- a/src/firstboot/firstboot.c +++ b/src/firstboot/firstboot.c @@ -491,7 +491,7 @@ static int prompt_root_password(void) { for (;;) { _cleanup_free_ char *a = NULL, *b = NULL; - r = ask_password_tty(msg1, 0, NULL, &a); + r = ask_password_tty(msg1, 0, false, NULL, &a); if (r < 0) { log_error("Failed to query root password: %s", strerror(-r)); return r; @@ -502,7 +502,7 @@ static int prompt_root_password(void) { break; } - r = ask_password_tty(msg2, 0, NULL, &b); + r = ask_password_tty(msg2, 0, false, NULL, &b); if (r < 0) { log_error("Failed to query root password: %s", strerror(-r)); clear_string(a);