]> ruderich.org/simon Gitweb - safcm/safcm.git/commitdiff
remote: go fmt and rewrap comment
authorSimon Ruderich <simon@ruderich.org>
Tue, 1 Jun 2021 06:18:48 +0000 (08:18 +0200)
committerSimon Ruderich <simon@ruderich.org>
Tue, 1 Jun 2021 06:19:14 +0000 (08:19 +0200)
remote/sync/files.go

index 24c59ce1d0bac7f560249f718677922a929dfa25..937f0e1f2df8820381d55951630a7c422e5dbb9d 100644 (file)
@@ -458,11 +458,12 @@ reopen:
        }
        // To guarantee durability fsync must be called on a parent directory
        // after adding, renaming or removing files therein.
-//
-// Calling sync on the files itself is not enough according to POSIX; man 2
-// fsync: "Calling fsync() does not necessarily ensure that the entry in the
-// directory containing the file has also reached disk. For that an explicit
-// fsync() on a file descriptor for the directory is also needed."
+       //
+       // Calling sync on the files itself is not enough according to POSIX;
+       // man 2 fsync: "Calling fsync() does not necessarily ensure that the
+       // entry in the directory containing the file has also reached disk.
+       // For that an explicit fsync() on a file descriptor for the directory
+       // is also needed."
        err = unix.Fsync(parentFd)
        if err != nil {
                return err