Changeset 25292 in vbox for trunk/src/VBox/HostServices
- Timestamp:
- Dec 10, 2009 10:29:57 AM (15 years ago)
- svn:sync-xref-src-repo-rev:
- 55839
- Location:
- trunk/src/VBox/HostServices/SharedFolders
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/HostServices/SharedFolders/testcase/tstShflCase.cpp
r18460 r25292 126 126 } 127 127 128 int rtDirReadEx(PRTDIR pDir, PRTDIRENTRYEX pDirEntry, size_t *pcbDirEntry, RTFSOBJATTRADD enmAdditionalAttribs) 129 { 128 int rtDirReadEx(PRTDIR pDir, PRTDIRENTRYEX pDirEntry, size_t *pcbDirEntry, RTFSOBJATTRADD enmAdditionalAttribs, uint32_t fFlags) 129 { 130 NOREF(fFlags); 130 131 switch(iDirList) 131 132 { … … 229 230 size_t cbDirEntrySize = cbDirEntry; 230 231 231 rc = RTDirReadEx(hSearch, pDirEntry, &cbDirEntrySize, RTFSOBJATTRADD_NOTHING );232 rc = RTDirReadEx(hSearch, pDirEntry, &cbDirEntrySize, RTFSOBJATTRADD_NOTHING, RTPATH_F_FOLLOW_LINK); 232 233 if (rc == VERR_NO_MORE_FILES) 233 234 break; -
trunk/src/VBox/HostServices/SharedFolders/vbsf.cpp
r24374 r25292 143 143 size_t cbDirEntrySize = cbDirEntry; 144 144 145 rc = RTDirReadEx(hSearch, pDirEntry, &cbDirEntrySize, RTFSOBJATTRADD_NOTHING );145 rc = RTDirReadEx(hSearch, pDirEntry, &cbDirEntrySize, RTFSOBJATTRADD_NOTHING, RTPATH_F_FOLLOW_LINK); 146 146 if (rc == VERR_NO_MORE_FILES) 147 147 break; … … 1532 1532 pDirEntry = pDirEntryOrg; 1533 1533 1534 rc = RTDirReadEx(DirHandle, pDirEntry, &cbDirEntrySize, RTFSOBJATTRADD_NOTHING );1534 rc = RTDirReadEx(DirHandle, pDirEntry, &cbDirEntrySize, RTFSOBJATTRADD_NOTHING, RTPATH_F_FOLLOW_LINK); 1535 1535 if (rc == VERR_NO_MORE_FILES) 1536 1536 {
Note:
See TracChangeset
for help on using the changeset viewer.