Changeset 31844 in vbox for trunk/src/VBox/ImageMounter/VBoxFUSE
- Timestamp:
- Aug 21, 2010 7:37:58 PM (14 years ago)
- Location:
- trunk/src/VBox/ImageMounter/VBoxFUSE
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/ImageMounter/VBoxFUSE/Makefile.kmk
r28800 r31844 51 51 VBoxFUSE_LIBS.darwin = fuse 52 52 VBoxFUSE_LIBS.linux = fuse 53 VBoxFUSE_LIBS.freebsd = fuse 53 54 VBoxFUSE_LIBPATHS.darwin = /usr/local/lib 54 55 -
trunk/src/VBox/ImageMounter/VBoxFUSE/VBoxFUSE.cpp
r31455 r31844 1009 1009 if (pInfo->flags & ( O_APPEND | O_ASYNC | O_DIRECT /* | O_LARGEFILE ? */ 1010 1010 | O_NOATIME | O_NOCTTY | O_NOFOLLOW | O_NONBLOCK 1011 /* | O_SYNC ? */)) 1012 return -EINVAL; 1013 if ((pInfo->flags & O_ACCMODE) == O_ACCMODE) 1014 return -EINVAL; 1015 #elif defined(RT_OS_FREEBSD) 1016 if (pInfo->flags & ( O_APPEND | O_ASYNC | O_DIRECT /* | O_LARGEFILE ? */ 1017 | O_NOCTTY | O_NOFOLLOW | O_NONBLOCK 1011 1018 /* | O_SYNC ? */)) 1012 1019 return -EINVAL;
Note:
See TracChangeset
for help on using the changeset viewer.