]> git.ipfire.org Git - thirdparty/systemd.git/commitdiff
analyze: tweak wording of description for ProtectSystem= (#11035)
authorDavid Malcolm <dmalcolm@redhat.com>
Mon, 3 Dec 2018 20:57:10 +0000 (15:57 -0500)
committerLennart Poettering <lennart@poettering.net>
Mon, 3 Dec 2018 20:57:09 +0000 (21:57 +0100)
src/analyze/analyze-security.c

index ceee83cd837bb5f7b1067bc784fc99fc53c964f5..6402d4504af6588905c5da94131f897115d98416 100644 (file)
@@ -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";