Changeset 75699 in vbox for trunk/src/VBox/Additions/darwin
- Timestamp:
- Nov 24, 2018 1:05:04 PM (6 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Additions/darwin/VBoxSF/VBoxSF-VfsOps.cpp
r75678 r75699 147 147 | VOL_CAP_FMT_64BIT_OBJECT_IDS; 148 148 pCaps->capabilities[VOL_CAPABILITIES_FORMAT] = VOL_CAP_FMT_2TB_FILESIZE 149 /// @todo | VOL_CAP_FMT_SYMBOLICLINKS - later150 /// @todo | VOL_CAP_FMT_SPARSE_FILES - probably, needs testing.149 /// @todo | VOL_CAP_FMT_SYMBOLICLINKS - later 150 /// @todo | VOL_CAP_FMT_SPARSE_FILES - probably, needs testing. 151 151 /*| VOL_CAP_FMT_CASE_SENSITIVE - case-insensitive */ 152 152 | VOL_CAP_FMT_CASE_PRESERVING 153 /// @todo | VOL_CAP_FMT_HIDDEN_FILES - if windows host.154 /// @todo | VOL_CAP_FMT_OPENDENYMODES - if windows host.153 /// @todo | VOL_CAP_FMT_HIDDEN_FILES - if windows host. 154 /// @todo | VOL_CAP_FMT_OPENDENYMODES - if windows host. 155 155 ; 156 156 pCaps->valid[VOL_CAPABILITIES_INTERFACES] = VOL_CAP_INT_SEARCHFS … … 170 170 | VOL_CAP_INT_EXTENDED_ATTR; 171 171 pCaps->capabilities[VOL_CAPABILITIES_INTERFACES] = 0 172 /// @todo | VOL_CAP_INT_SEARCHFS173 /// @todo | VOL_CAP_INT_COPYFILE174 /// @todo | VOL_CAP_INT_READDIRATTR172 /// @todo | VOL_CAP_INT_SEARCHFS 173 /// @todo | VOL_CAP_INT_COPYFILE 174 /// @todo | VOL_CAP_INT_READDIRATTR 175 175 ; 176 176 … … 378 378 if (pThis->pVnRoot) 379 379 { 380 380 int rc = vnode_get(pThis->pVnRoot); 381 381 if (rc == 0) 382 382 { … … 547 547 */ 548 548 pThis->pVnRoot = vboxSfDwnVnAlloc(pMount, VDIR, NULL /*pParent*/, 0); 549 549 if (pThis->pVnRoot) 550 550 { 551 551 /* … … 582 582 pThis->MntInfo.szFolder, pThis->uidMounter)); 583 583 return 0; 584 584 } 585 585 586 586 LogRel(("VBoxSF: mount: Failed to allocate root node!\n"));
Note:
See TracChangeset
for help on using the changeset viewer.