diff options
author | Marko Myllynen <myllynen@redhat.com> | 2018-10-09 17:13:34 +0300 |
---|---|---|
committer | Zbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl> | 2018-10-09 16:26:03 +0200 |
commit | a1c111c2d12429d29dd3d167308d693c2efe245b (patch) | |
tree | 373cc630a2a4b71b00abd8ff3881b50bb3eca810 /src/tty-ask-password-agent | |
parent | 4c187c52587e209c43f2bfdc275bcb46a721e6e0 (diff) | |
download | systemd-a1c111c2d12429d29dd3d167308d693c2efe245b.tar.gz |
More polite passphrase prompt
Instead of
Please enter passphrase for disk <disk-name>!
use
Please enter passphrase for disk <disk-name>:
which is more polite and matches Plymouth convention.
Diffstat (limited to 'src/tty-ask-password-agent')
-rw-r--r-- | src/tty-ask-password-agent/tty-ask-password-agent.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/tty-ask-password-agent/tty-ask-password-agent.c b/src/tty-ask-password-agent/tty-ask-password-agent.c index 2aa97a8d08..690c7b0de9 100644 --- a/src/tty-ask-password-agent/tty-ask-password-agent.c +++ b/src/tty-ask-password-agent/tty-ask-password-agent.c @@ -323,7 +323,7 @@ static int parse_password(const char *filename, char **wall) { if (asprintf(&_wall, "%s%sPassword entry required for \'%s\' (PID %u).\r\n" - "Please enter password with the systemd-tty-ask-password-agent tool!", + "Please enter password with the systemd-tty-ask-password-agent tool:", strempty(*wall), *wall ? "\r\n\r\n" : "", message, |