From 1e8817b327f142be1246117ea5220f4afa87d7d6 Mon Sep 17 00:00:00 2001 From: David Malcolm Date: Mon, 3 Dec 2018 15:57:10 -0500 Subject: [PATCH] analyze: tweak wording of description for ProtectSystem= (#11035) --- src/analyze/analyze-security.c | 4 ++-- 1 file 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";