From: Lennart Poettering Date: Tue, 22 Nov 2016 19:21:23 +0000 (+0100) Subject: namespace: reindent protect_system_strict_table[] as well X-Git-Tag: v233~326^2~6 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=ddbe041277a2b363364304ba03884e8458a882ca;p=thirdparty%2Fsystemd.git namespace: reindent protect_system_strict_table[] as well All other tables got reindented, but one was forgotten. Fix that. --- diff --git a/src/core/namespace.c b/src/core/namespace.c index aca47a4d2fb..ee705af6b83 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) {