diff options
author | Zbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl> | 2017-12-07 12:42:06 +0100 |
---|---|---|
committer | Zbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl> | 2017-12-07 12:42:06 +0100 |
commit | 9db82fe3c25d2ecca8e774bc74c43c2f5fb2de75 (patch) | |
tree | 6a818129a5ed97b152fd50ad23b584694f388d14 /src/sulogin-shell | |
parent | 375c3f6aae10a830d416f66dc766f3d6793670fc (diff) | |
download | systemd-9db82fe3c25d2ecca8e774bc74c43c2f5fb2de75.tar.gz |
sulogin-shell: replace "^D" by "exit"
^D is a bit cryptic, and advanced users will know that they can use ^D instead
of typing exit anyway.
Diffstat (limited to 'src/sulogin-shell')
-rw-r--r-- | src/sulogin-shell/sulogin-shell.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/sulogin-shell/sulogin-shell.c b/src/sulogin-shell/sulogin-shell.c index 82bb0e7f68..70659df417 100644 --- a/src/sulogin-shell/sulogin-shell.c +++ b/src/sulogin-shell/sulogin-shell.c @@ -103,8 +103,8 @@ static int fork_wait(const char* const cmdline[]) { static void print_mode(const char* mode) { printf("You are in %s mode. After logging in, type \"journalctl -xb\" to view\n" - "system logs, \"systemctl reboot\" to reboot, \"systemctl default\" or ^D to boot\n" - "into default mode.\n", mode); + "system logs, \"systemctl reboot\" to reboot, \"systemctl default\" or \"exit\"\n" + "to boot into default mode.\n", mode); fflush(stdout); } |