diff options
author | Lennart Poettering <lennart@poettering.net> | 2016-11-22 20:21:23 +0100 |
---|---|---|
committer | Lennart Poettering <lennart@poettering.net> | 2016-12-13 21:22:13 +0100 |
commit | ddbe041277a2b363364304ba03884e8458a882ca (patch) | |
tree | 4f97174ed1832ead05e8bb3dddb419fd9e9503ee | |
parent | 835552511ef5edec94b567441251ada2a37ea333 (diff) |
namespace: reindent protect_system_strict_table[] as well
All other tables got reindented, but one was forgotten. Fix that.
-rw-r--r-- | src/core/namespace.c | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/src/core/namespace.c b/src/core/namespace.c index aca47a4d2f..ee705af6b8 100644 --- a/src/core/namespace.c +++ b/src/core/namespace.c @@ -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) { |