Changeset 76363 in vbox for trunk/src/VBox/Main/src-server
- Timestamp:
- Dec 22, 2018 1:48:54 AM (6 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/src-server/VFSExplorerImpl.cpp
r73003 r76363 210 210 rc = pVFSExplorer->i_updateFS(this); 211 211 else if (pVFSExplorer->m->storageType == VFSType_S3) 212 rc = VERR_NOT_IMPLEMENTED;212 rc = E_NOTIMPL; 213 213 break; 214 214 } … … 218 218 rc = pVFSExplorer->i_deleteFS(this); 219 219 else if (pVFSExplorer->m->storageType == VFSType_S3) 220 rc = VERR_NOT_IMPLEMENTED;220 rc = E_NOTIMPL; 221 221 break; 222 222 } … … 336 336 LogFlowFuncLeave(); 337 337 338 return VINF_SUCCESS;338 return S_OK; /** @todo ??? */ 339 339 } 340 340
Note:
See TracChangeset
for help on using the changeset viewer.