opnsense-ports/sysutils/freefilesync/files/patch-fs_native.cpp
Franco Fichtner ae1e3c6f0e */*: sync with upstream
Taken from: FreeBSD
2016-03-08 19:03:51 +01:00

12 lines
519 B
C++

--- fs/native.cpp.orig 2016-03-09 02:07:44 UTC
+++ fs/native.cpp
@@ -84,8 +84,7 @@ void preAllocateSpaceBestEffort(FileHand
#elif defined ZEN_LINUX
//don't use potentially inefficient ::posix_fallocate!
- const int rv = ::fallocate(fh, //int fd,
- 0, //int mode,
+ const int rv = ::posix_fallocate(fh, //int fd,
0, //off_t offset
streamSize); //off_t len
if (rv != 0)