From 9db82fe3c25d2ecca8e774bc74c43c2f5fb2de75 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Zbigniew=20J=C4=99drzejewski-Szmek?= Date: Thu, 7 Dec 2017 12:42:06 +0100 Subject: [PATCH] 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. --- src/sulogin-shell/sulogin-shell.c | 4 ++-- 1 file 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); }