From: Leaflet <156237164+I-use-Arch-btw-00111@users.noreply.github.com> Date: Mon, 15 Apr 2024 16:52:19 +0000 (+0000) Subject: (minor) update sulogin.c X-Git-Tag: v2.42-start~405^2 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=40c2181d2ce5eefeceea94d28e743012c6b440b0;p=thirdparty%2Futil-linux.git (minor) update sulogin.c Make the root password prompt more technical --- diff --git a/login-utils/sulogin.c b/login-utils/sulogin.c index 2682c30fb..501961f5f 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 }