aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLeaflet <156237164+I-use-Arch-btw-00111@users.noreply.github.com>2024-04-15 16:52:19 +0000
committerGitHub <noreply@github.com>2024-04-15 16:52:19 +0000
commit40c2181d2ce5eefeceea94d28e743012c6b440b0 (patch)
treed589cf2a81a981dc9db6baaf138db6c55b047f03
parent5aa0c75c78dfb6a0c9851b348ba778149a4550a5 (diff)
downloadutil-linux-40c2181d2ce5eefeceea94d28e743012c6b440b0.tar.gz
(minor) update sulogin.c
Make the root password prompt more technical
-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
}