changeset 15902:853b66fabd2f v8.1.0957

patch 8.1.0957: Mac: fsync fails on network share commit https://github.com/vim/vim/commit/35856718881834a76225530d502c68fdec6584cf Author: Bram Moolenaar <Bram@vim.org> Date: Wed Feb 20 20:37:01 2019 +0100 patch 8.1.0957: Mac: fsync fails on network share Problem: Mac: fsync fails on network share. Solution: Check for ENOTSUP. (Yee Cheng Chin, closes https://github.com/vim/vim/issues/4016)
author Bram Moolenaar <Bram@vim.org>
date Wed, 20 Feb 2019 20:45:08 +0100
parents 3a7088a0daa1
children 4e31e389a658
files src/fileio.c src/version.c
diffstat 2 files changed, 3 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/src/fileio.c
+++ b/src/fileio.c
@@ -5135,7 +5135,7 @@ vim_fsync(int fd)
 
 # ifdef MACOS_X
     r = fcntl(fd, F_FULLFSYNC);
-    if (r != 0 && errno == ENOTTY)
+    if (r != 0 && (errno == ENOTTY || errno == ENOTSUP))
 # endif
 	r = fsync(fd);
     return r;
--- a/src/version.c
+++ b/src/version.c
@@ -780,6 +780,8 @@ static char *(features[]) =
 static int included_patches[] =
 {   /* Add new patch number below this line */
 /**/
+    957,
+/**/
     956,
 /**/
     955,