Changeset 108753 in vbox for trunk/src/VBox/Additions/common/VBoxService/VBoxServiceAutoMount.cpp
- Timestamp:
- Mar 26, 2025 11:55:20 AM (4 weeks ago)
- svn:sync-xref-src-repo-rev:
- 168178
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Additions/common/VBoxService/VBoxServiceAutoMount.cpp
r106061 r108753 1407 1407 return VINF_SUCCESS; 1408 1408 } 1409 VGSvcError("vbsvcAutomounterMountIt: Failed to attach '%s' to '%s': %Rrc (%u)\n", 1410 pEntry->pszName, pEntry->pszActualMountPoint, RTErrConvertFromWin32(dwErr), dwErr); 1409 else if (dwErr == ERROR_BAD_PROVIDER) 1410 VGSvcError("vbsvcAutomounterMountIt: Failed to attach '%s' to '%s': VirtualBox Shared Folders provider not or " \ 1411 "incorrectly installed, can't continue\n", 1412 pEntry->pszName, pEntry->pszActualMountPoint); 1413 else 1414 VGSvcError("vbsvcAutomounterMountIt: Failed to attach '%s' to '%s': %Rrc (%u)\n", 1415 pEntry->pszName, pEntry->pszActualMountPoint, RTErrConvertFromWin32(dwErr), dwErr); 1411 1416 return VERR_OPEN_FAILED; 1412 1417
Note:
See TracChangeset
for help on using the changeset viewer.