Changeset 69802 in vbox for trunk/src/VBox/Runtime/tools
- Timestamp:
- Nov 22, 2017 9:57:07 AM (7 years ago)
- svn:sync-xref-src-repo-rev:
- 119223
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/tools/RTChMod.cpp
r69795 r69802 229 229 if (!fUseChainApi) 230 230 { 231 rc = RTVfsDirOpenNormal(pszPath, 0 /** @todo write attrib flag*/, &hVfsDir);231 rc = RTVfsDirOpenNormal(pszPath, 0 /** @todo write attrib flag*/, &hVfsDir); 232 232 if (RT_FAILURE(rc)) 233 233 return RTMsgErrorExitFailure("RTVfsDirOpenNormal failed on '%s': %Rrc", pszPath, rc); … … 235 235 else 236 236 { 237 rc = RTVfsChainOpenDir(pszPath, 0 /** @todo write attrib flag*/, &hVfsDir, &offError, RTErrInfoInitStatic(&ErrInfo));237 rc = RTVfsChainOpenDir(pszPath, 0 /** @todo write attrib flag*/, &hVfsDir, &offError, RTErrInfoInitStatic(&ErrInfo)); 238 238 if (RT_FAILURE(rc)) 239 239 return RTVfsChainMsgErrorExitFailure("RTVfsChainQueryInfo", pszPath, rc, offError, &ErrInfo.Core);
Note:
See TracChangeset
for help on using the changeset viewer.