Changeset 78730 in vbox
- Timestamp:
- May 24, 2019 1:46:38 PM (6 years ago)
- svn:sync-xref-src-repo-rev:
- 130809
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/r3/posix/dir-posix.cpp
r78050 r78730 159 159 { 160 160 rc = errno; 161 if (rc != ENOTDIR) 161 if (rc == EEXIST) /* Solaris returns this, the rest have ENOTDIR. */ 162 rc = VERR_DIR_NOT_EMPTY; 163 else if (rc != ENOTDIR) 162 164 rc = RTErrConvertFromErrno(rc); 163 165 else
Note:
See TracChangeset
for help on using the changeset viewer.