summaryrefslogtreecommitdiff
path: root/src/analyze
diff options
context:
space:
mode:
authorLennart Poettering <lennart@poettering.net>2018-12-03 21:39:12 +0100
committerLennart Poettering <lennart@poettering.net>2018-12-03 22:42:38 +0100
commit9969b5427967dc7bcbd9a14ea4d6ae8133c5fec0 (patch)
tree34ce0d5aed14c4b0b6a168f0afb7950a244f606a /src/analyze
parent359abf6dd05aa6bca3438e9c969ed904bd3d447d (diff)
downloadsystemd-9969b5427967dc7bcbd9a14ea4d6ae8133c5fec0.tar.gz
tree-wide: specify all table headers in lower-case
Diffstat (limited to 'src/analyze')
-rw-r--r--src/analyze/analyze-security.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/analyze/analyze-security.c b/src/analyze/analyze-security.c
index 6402d4504a..9f327d365e 100644
--- a/src/analyze/analyze-security.c
+++ b/src/analyze/analyze-security.c
@@ -1393,7 +1393,7 @@ static int assess(const struct security_info *info, Table *overview_table, Analy
int r;
if (!FLAGS_SET(flags, ANALYZE_SECURITY_SHORT)) {
- details_table = table_new("", "NAME", "DESCRIPTION", "WEIGHT", "BADNESS", "RANGE", "EXPOSURE");
+ details_table = table_new(" ", "name", "description", "weight", "badness", "range", "exposure");
if (!details_table)
return log_oom();
@@ -1967,7 +1967,7 @@ int analyze_security(sd_bus *bus, char **units, AnalyzeSecurityFlags flags) {
assert(bus);
if (strv_length(units) != 1) {
- overview_table = table_new("UNIT", "EXPOSURE", "PREDICATE", "HAPPY");
+ overview_table = table_new("unit", "exposure", "predicate", "happy");
if (!overview_table)
return log_oom();
}