diff options
author | Thomas Hindoe Paaboel Andersen <phomes@gmail.com> | 2015-08-06 00:31:09 +0200 |
---|---|---|
committer | Thomas Hindoe Paaboel Andersen <phomes@gmail.com> | 2015-08-06 00:44:19 +0200 |
commit | 7d6884b65e6ea7317346d29bc2f6c9ba051a0cac (patch) | |
tree | a887c3b285cacf9102ce14d82ffa0948643dd0b9 /src/tmpfiles/tmpfiles.c | |
parent | 511d2ffc8cc4e6c6b528aa96c4096f57bc52226e (diff) |
tree-wide: fix indentation
Diffstat (limited to 'src/tmpfiles/tmpfiles.c')
-rw-r--r-- | src/tmpfiles/tmpfiles.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/tmpfiles/tmpfiles.c b/src/tmpfiles/tmpfiles.c index 271984b5a8..d6f7801561 100644 --- a/src/tmpfiles/tmpfiles.c +++ b/src/tmpfiles/tmpfiles.c @@ -616,7 +616,7 @@ static int path_set_perms(Item *i, const char *path) { if (!(st.st_mode & 0111)) m &= ~0111; if (!(st.st_mode & 0222)) - m &= ~0222; + m &= ~0222; if (!(st.st_mode & 0444)) m &= ~0444; if (!S_ISDIR(st.st_mode)) @@ -641,7 +641,7 @@ static int path_set_perms(Item *i, const char *path) { if (chown(fn, i->uid_set ? i->uid : UID_INVALID, i->gid_set ? i->gid : GID_INVALID) < 0) - return log_error_errno(errno, "chown(%s) failed: %m", path); + return log_error_errno(errno, "chown(%s) failed: %m", path); } } |