Changeset 89718 in vbox
- Timestamp:
- Jun 15, 2021 6:47:42 PM (3 years ago)
- Location:
- trunk/src/VBox/Main/src-server
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/src-server/HostImpl.cpp
r87258 r89718 1007 1007 1008 1008 MultiResult rc = i_checkUSBProxyService(); 1009 if (FAILED(rc) )1009 if (FAILED(rc) || SUCCEEDED_WARNING(rc)) 1010 1010 return rc; 1011 1011 … … 3547 3547 case VERR_FILE_NOT_FOUND: /** @todo what does this mean? */ 3548 3548 return setWarning(E_FAIL, 3549 tr("Could not load the Host USB Proxy Service (VERR_FILE_NOT_FOUND). The service might not be installed on the host computer"));3549 tr("Could not load the Host USB Proxy Service (VERR_FILE_NOT_FOUND). The service might not be installed on the host computer")); 3550 3550 case VERR_VUSB_USB_DEVICE_PERMISSION: 3551 3551 return setWarning(E_FAIL, -
trunk/src/VBox/Main/src-server/MachineImpl.cpp
r88365 r89718 13243 13243 clearError(); 13244 13244 MultiResult rc = mParent->i_host()->i_checkUSBProxyService(); 13245 if (FAILED(rc)) return rc; 13245 if (FAILED(rc) || SUCCEEDED_WARNING(rc)) 13246 return rc; 13246 13247 13247 13248 USBProxyService *service = mParent->i_host()->i_usbProxyService();
Note:
See TracChangeset
for help on using the changeset viewer.