summaryrefslogtreecommitdiff
path: root/src/core
diff options
context:
space:
mode:
authorLuke Shumaker <lukeshu@sbcglobal.net>2016-05-25 12:23:40 -0400
committerLuke Shumaker <lukeshu@sbcglobal.net>2016-06-09 02:22:28 -0400
commit227b234720823fc02c3f70cd80da281beb869464 (patch)
treea34030f586a5bfc6f2c9934a70661b2e3b72f93f /src/core
parentf20f0464c9614902839602307804549a5444332b (diff)
FSDG: os-release: Default to PRETTY_NAME "GNU/Linux" instead of "Linux".
Diffstat (limited to 'src/core')
-rw-r--r--src/core/main.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/core/main.c b/src/core/main.c
index 6397aadc73..5ed8c3d3f5 100644
--- a/src/core/main.c
+++ b/src/core/main.c
@@ -1237,11 +1237,11 @@ static int status_welcome(void) {
return status_printf(NULL, false, false,
"\nWelcome to \x1B[%sm%s\x1B[0m!\n",
isempty(ansi_color) ? "1" : ansi_color,
- isempty(pretty_name) ? "Linux" : pretty_name);
+ isempty(pretty_name) ? "GNU/Linux" : pretty_name);
else
return status_printf(NULL, false, false,
"\nWelcome to %s!\n",
- isempty(pretty_name) ? "Linux" : pretty_name);
+ isempty(pretty_name) ? "GNU/Linux" : pretty_name);
}
static int write_container_id(void) {