aboutsummaryrefslogtreecommitdiff
path: root/src/file.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/file.cpp')
-rw-r--r--src/file.cpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/file.cpp b/src/file.cpp
index aa0ea32..4776217 100644
--- a/src/file.cpp
+++ b/src/file.cpp
@@ -227,6 +227,8 @@ int Bu::File::getPosixFlags( int iFlags )
227 if( (iFlags&Exclusive) == Exclusive ) 227 if( (iFlags&Exclusive) == Exclusive )
228 iRet |= O_EXCL; 228 iRet |= O_EXCL;
229 229
230 iRet |= O_BINARY;
231
230 return iRet; 232 return iRet;
231} 233}
232 234