summaryrefslogtreecommitdiff
path: root/src/shutdown/umount.c
diff options
context:
space:
mode:
authorYu Watanabe <watanabe.yu+github@gmail.com>2020-11-18 16:38:49 +0900
committerYu Watanabe <watanabe.yu+github@gmail.com>2020-11-18 17:23:00 +0900
commit273d76f4f88e9b8b6e3be21d1cde1d0a943009c5 (patch)
treeb620d4a40fddabaf098e81343f5715995e020e67 /src/shutdown/umount.c
parent10f3484950e18c385b87724f4c1f4605112aac3e (diff)
downloadsystemd-273d76f4f88e9b8b6e3be21d1cde1d0a943009c5.tar.gz
tree-wide: update "that that"
Diffstat (limited to 'src/shutdown/umount.c')
-rw-r--r--src/shutdown/umount.c12
1 files changed, 4 insertions, 8 deletions
diff --git a/src/shutdown/umount.c b/src/shutdown/umount.c
index e6542c2716..3a72a13e1a 100644
--- a/src/shutdown/umount.c
+++ b/src/shutdown/umount.c
@@ -514,10 +514,8 @@ static int remount_with_timeout(MountPoint *m, int umount_log_level) {
assert(m);
- /* Due to the possibility of a remount operation hanging, we
- * fork a child process and set a timeout. If the timeout
- * lapses, the assumption is that that particular remount
- * failed. */
+ /* Due to the possibility of a remount operation hanging, we fork a child process and set a
+ * timeout. If the timeout lapses, the assumption is that the particular remount failed. */
r = safe_fork("(sd-remount)", FORK_RESET_SIGNALS|FORK_CLOSE_ALL_FDS|FORK_LOG|FORK_REOPEN_LOG, &pid);
if (r < 0)
return r;
@@ -552,10 +550,8 @@ static int umount_with_timeout(MountPoint *m, int umount_log_level) {
assert(m);
- /* Due to the possibility of a umount operation hanging, we
- * fork a child process and set a timeout. If the timeout
- * lapses, the assumption is that that particular umount
- * failed. */
+ /* Due to the possibility of a umount operation hanging, we fork a child process and set a
+ * timeout. If the timeout lapses, the assumption is that the particular umount failed. */
r = safe_fork("(sd-umount)", FORK_RESET_SIGNALS|FORK_CLOSE_ALL_FDS|FORK_LOG|FORK_REOPEN_LOG, &pid);
if (r < 0)
return r;