Changeset 29807 in vbox for trunk/src/VBox/Main
- Timestamp:
- May 26, 2010 10:13:20 AM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/GuestImpl.cpp
r29785 r29807 1060 1060 tr("The guest did not respond within time (%ums)"), aTimeoutMS); 1061 1061 } 1062 else if (vrc == VERR_INVALID_PARAMETER)1063 {1064 rc = setError(VBOX_E_IPRT_ERROR,1065 tr("The guest reported an unknown process status (%u)"), pData->u32Status);1066 }1067 1062 else if (vrc == VERR_PERMISSION_DENIED) 1068 1063 { … … 1072 1067 else 1073 1068 { 1074 rc = setError(E_UNEXPECTED, 1075 tr("The service call failed with error %Rrc"), vrc); 1069 if (pData->u32Status == PROC_STS_ERROR) 1070 rc = setError(VBOX_E_IPRT_ERROR, 1071 tr("Process could not be started: %Rrc"), pData->u32Flags); 1072 else 1073 rc = setError(E_UNEXPECTED, 1074 tr("The service call failed with error %Rrc"), vrc); 1076 1075 } 1077 1076 }
Note:
See TracChangeset
for help on using the changeset viewer.