diff options
author | Luke Shumaker <lukeshu@sbcglobal.net> | 2016-05-25 12:23:40 -0400 |
---|---|---|
committer | Luke Shumaker <lukeshu@sbcglobal.net> | 2016-12-17 00:40:55 -0500 |
commit | 9146dc0afb1118a988ce79a249d5e5235b7b52c8 (patch) | |
tree | 6eb0653ce1946f79640c9e3f2c16d40f58d76f3e /src/analyze | |
parent | 6ac128c84e425a3048f7eee0ec00b9494b34cb63 (diff) |
FSDG: os-release: Default to PRETTY_NAME "GNU/Linux" instead of "Linux".
Diffstat (limited to 'src/analyze')
-rw-r--r-- | src/analyze/analyze.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/analyze/analyze.c b/src/analyze/analyze.c index cbf9354a7a..66830695f3 100644 --- a/src/analyze/analyze.c +++ b/src/analyze/analyze.c @@ -653,7 +653,7 @@ static int analyze_plot(sd_bus *bus) { svg("<rect class=\"background\" width=\"100%%\" height=\"100%%\" />\n"); svg("<text x=\"20\" y=\"50\">%s</text>", pretty_times); svg("<text x=\"20\" y=\"30\">%s %s (%s %s %s) %s %s</text>", - isempty(host->os_pretty_name) ? "Linux" : host->os_pretty_name, + isempty(host->os_pretty_name) ? "GNU/Linux" : host->os_pretty_name, strempty(host->hostname), strempty(host->kernel_name), strempty(host->kernel_release), |