summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorDavid Malcolm <dmalcolm@redhat.com>2018-12-03 21:57:10 +0100
committerLennart Poettering <lennart@poettering.net>2018-12-03 21:57:09 +0100
commit1e8817b327f142be1246117ea5220f4afa87d7d6 (patch)
tree6ec45da3e2bed6f0098d4938aa8b218a4da4b31e /src
parentMerge pull request #10567 from cdown/disable_controller (diff)
downloadsystemd-1e8817b327f142be1246117ea5220f4afa87d7d6.tar.xz
systemd-1e8817b327f142be1246117ea5220f4afa87d7d6.zip
analyze: tweak wording of description for ProtectSystem= (#11035)
Diffstat (limited to 'src')
-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 ceee83cd83..6402d4504a 100644
--- a/src/analyze/analyze-security.c
+++ b/src/analyze/analyze-security.c
@@ -254,13 +254,13 @@ static int assess_protect_system(
assert(ret_description);
badness = 10;
- description = "Service has full access the OS file hierarchy";
+ description = "Service has full access to the OS file hierarchy";
r = parse_boolean(info->protect_system);
if (r < 0) {
if (streq_ptr(info->protect_system, "full")) {
badness = 3;
- description = "Service has very limited write access to OS file hierarchy";
+ description = "Service has very limited write access to the OS file hierarchy";
} else if (streq_ptr(info->protect_system, "strict")) {
badness = 0;
description = "Service has strict read-only access to the OS file hierarchy";