summaryrefslogtreecommitdiff
path: root/mysys
diff options
context:
space:
mode:
Diffstat (limited to 'mysys')
-rw-r--r--mysys/my_sync.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/mysys/my_sync.c b/mysys/my_sync.c
index 9f6c55f4fb6..cb0f5794b2e 100644
--- a/mysys/my_sync.c
+++ b/mysys/my_sync.c
@@ -68,6 +68,8 @@ int my_sync(File fd, myf my_flags)
res= fdatasync(fd);
#elif defined(HAVE_FSYNC)
res= fsync(fd);
+ if (res == -1 and errno == ENOLCK)
+ res= 0; /* Result Bug in Old FreeBSD */
#elif defined(__WIN__)
res= _commit(fd);
#else