tmpfiles: break comment blocks according to our current editor settings

This commit is contained in:
Lennart Poettering 2019-01-18 15:52:31 +01:00
parent 76e15a9cab
commit a23fabc697

View file

@ -606,12 +606,10 @@ static int dir_cleanup(
r = q; r = q;
} }
/* Note: if you are wondering why we don't /* Note: if you are wondering why we don't support the sticky bit for excluding
* support the sticky bit for excluding * directories from cleaning like we do it for other file system objects: well, the
* directories from cleaning like we do it for * sticky bit already has a meaning for directories, so we don't want to overload
* other file system objects: well, the sticky * that. */
* bit already has a meaning for directories,
* so we don't want to overload that. */
if (keep_this_level) { if (keep_this_level) {
log_debug("Keeping \"%s\".", sub_path); log_debug("Keeping \"%s\".", sub_path);
@ -644,10 +642,8 @@ static int dir_cleanup(
r = log_error_errno(errno, "rmdir(%s): %m", sub_path); r = log_error_errno(errno, "rmdir(%s): %m", sub_path);
} else { } else {
/* Skip files for which the sticky bit is /* Skip files for which the sticky bit is set. These are semantics we define, and are
* set. These are semantics we define, and are * unknown elsewhere. See XDG_RUNTIME_DIR specification for details. */
* unknown elsewhere. See XDG_RUNTIME_DIR
* specification for details. */
if (s.st_mode & S_ISVTX) { if (s.st_mode & S_ISVTX) {
log_debug("Skipping \"%s\": sticky bit set.", sub_path); log_debug("Skipping \"%s\": sticky bit set.", sub_path);
continue; continue;
@ -674,8 +670,7 @@ static int dir_cleanup(
continue; continue;
} }
/* Keep files on this level around if this is /* Keep files on this level around if this is requested */
* requested */
if (keep_this_level) { if (keep_this_level) {
log_debug("Keeping \"%s\".", sub_path); log_debug("Keeping \"%s\".", sub_path);
continue; continue;