aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKarel Zak <kzak@redhat.com>2024-04-16 11:19:03 +0200
committerKarel Zak <kzak@redhat.com>2024-04-16 11:19:03 +0200
commit0501e39ad4168a2e2072b0eeb00a9b065ed99b24 (patch)
tree84c85ad887c2188af69504b042de8474050ad1d7
parent1c1073e0dccef02d45818403244832d8044d08ff (diff)
parent40c2181d2ce5eefeceea94d28e743012c6b440b0 (diff)
downloadutil-linux-0501e39ad4168a2e2072b0eeb00a9b065ed99b24.tar.gz
Merge branch 'patch-1' of https://github.com/I-use-Arch-btw-00111/util-linux
* 'patch-1' of https://github.com/I-use-Arch-btw-00111/util-linux: (minor) update sulogin.c
-rw-r--r--login-utils/sulogin.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/login-utils/sulogin.c b/login-utils/sulogin.c
index 2682c30fb6..501961f5fb 100644
--- a/login-utils/sulogin.c
+++ b/login-utils/sulogin.c
@@ -664,14 +664,14 @@ static void doprompt(const char *crypted, struct console *con, int deny)
else {
#if defined(USE_ONELINE)
if (crypted[0] && !locked_account_password(crypted))
- fprintf(con->file, _("Give root password for login: "));
+ fprintf(con->file, _("Enter root password for login: "));
else
fprintf(con->file, _("Press Enter for login: "));
#else
if (crypted[0] && !locked_account_password(crypted))
- fprintf(con->file, _("Give root password for maintenance\n"));
+ fprintf(con->file, _("Enter root password for system maintenance\n"));
else
- fprintf(con->file, _("Press Enter for maintenance\n"));
+ fprintf(con->file, _("Press Enter for system maintenance\n"));
fprintf(con->file, _("(or press Control-D to continue): "));
#endif
}