Changeset 84720 in vbox for trunk/src/VBox/Additions/WINNT/VBoxTray/VBoxTray.cpp
- Timestamp:
- Jun 8, 2020 7:51:42 AM (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Additions/WINNT/VBoxTray/VBoxTray.cpp
r83952 r84720 312 312 if (RT_FAILURE(rc2)) 313 313 { 314 LogRel(("Failed to initialize service '%s', rc=%Rrc\n", pSvc->pDesc->pszName, rc2)); 315 if (rc2 == VERR_NOT_SUPPORTED) 314 switch (rc2) 316 315 { 317 LogRel(("Service '%s' is not supported on this system\n", pSvc->pDesc->pszName)); 318 rc2 = VINF_SUCCESS; 316 case VERR_NOT_SUPPORTED: 317 LogRel(("Service '%s' is not supported on this system\n", pSvc->pDesc->pszName)); 318 rc2 = VINF_SUCCESS; /* Keep going. */ 319 break; 320 321 case VERR_HGCM_SERVICE_NOT_FOUND: 322 LogRel(("Service '%s' is not available on the host\n", pSvc->pDesc->pszName)); 323 rc2 = VINF_SUCCESS; /* Keep going. */ 324 break; 325 326 default: 327 LogRel(("Failed to initialize service '%s', rc=%Rrc\n", pSvc->pDesc->pszName, rc2)); 328 break; 319 329 } 320 /* Keep going. */321 330 } 322 331 else
Note:
See TracChangeset
for help on using the changeset viewer.