Changeset 5346 in vbox
- Timestamp:
- Oct 17, 2007 10:09:18 AM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/r3/posix/dir-posix.cpp
r4071 r5346 75 75 { 76 76 if (mkdir(pszNativePath, fMode & RTFS_UNIX_MASK)) 77 rc = RTErrConvertFromErrno(errno); 77 { 78 #ifdef RT_OS_SOLARIS 79 if (errno == ENOSYS) /* ENOSYS has a slight different meaning (mkdir on nfs mount point). */ 80 rc = VERR_ALREADY_EXISTS; 81 else 82 #endif 83 rc = RTErrConvertFromErrno(errno); 84 } 78 85 } 79 86
Note:
See TracChangeset
for help on using the changeset viewer.