]> git.ipfire.org Git - thirdparty/systemd.git/commitdiff
namespace: reindent protect_system_strict_table[] as well
authorLennart Poettering <lennart@poettering.net>
Tue, 22 Nov 2016 19:21:23 +0000 (20:21 +0100)
committerLennart Poettering <lennart@poettering.net>
Tue, 13 Dec 2016 20:22:13 +0000 (21:22 +0100)
All other tables got reindented, but one was forgotten. Fix that.

src/core/namespace.c

index aca47a4d2fb7f065c5e859f2052a4fd98962dba0..ee705af6b8335ee0eac3402d475f07a82bfa8304 100644 (file)
@@ -141,13 +141,13 @@ static const BindMount protect_system_full_table[] = {
  * shall manage those, orthogonally).
  */
 static const BindMount protect_system_strict_table[] = {
-        { "/",          READONLY,       false },
-        { "/proc",      READWRITE,      false },      /* ProtectKernelTunables= */
-        { "/sys",       READWRITE,      false },      /* ProtectKernelTunables= */
-        { "/dev",       READWRITE,      false },      /* PrivateDevices= */
-        { "/home",      READWRITE,      true  },      /* ProtectHome= */
-        { "/run/user",  READWRITE,      true  },      /* ProtectHome= */
-        { "/root",      READWRITE,      true  },      /* ProtectHome= */
+        { "/",                   READONLY,     false },
+        { "/proc",               READWRITE,    false },      /* ProtectKernelTunables= */
+        { "/sys",                READWRITE,    false },      /* ProtectKernelTunables= */
+        { "/dev",                READWRITE,    false },      /* PrivateDevices= */
+        { "/home",               READWRITE,    true  },      /* ProtectHome= */
+        { "/run/user",           READWRITE,    true  },      /* ProtectHome= */
+        { "/root",               READWRITE,    true  },      /* ProtectHome= */
 };
 
 static const char *bind_mount_path(const BindMount *p) {