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.
This commit is contained in:
Zbigniew Jędrzejewski-Szmek 2017-12-07 12:42:06 +01:00
parent 375c3f6aae
commit 9db82fe3c2

View file

@ -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);
}