- Timestamp:
- Jan 24, 2023 9:12:26 AM (2 years ago)
- Location:
- trunk/src/VBox/Main
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/src-client/ConsoleImpl.cpp
r98263 r98264 6260 6260 if (FAILED(autoVMCaller.hrc())) 6261 6261 { 6262 LogFlowThisFunc(("Detach request ignored (mMachineState=%d).\n", 6263 mMachineState)); 6262 LogFlowThisFunc(("Detach request ignored (mMachineState=%d).\n", mMachineState)); 6264 6263 return autoVMCaller.hrc(); 6265 6264 } -
trunk/src/VBox/Main/src-server/DHCPServerImpl.cpp
r98262 r98264 1006 1006 catch (const xml::EIPRTFailure &e) 1007 1007 { 1008 vrc = e. rc();1008 vrc = e.getStatus(); 1009 1009 LogThisFunc(("caught xml::EIPRTFailure: rc=%Rrc (attempt %u, msg=%s)\n", vrc, uReadAttempt, e.what())); 1010 1010 if ( ( vrc == VERR_FILE_NOT_FOUND -
trunk/src/VBox/Main/src-server/VirtualBoxImpl.cpp
r98262 r98264 608 608 // only if the main settings file does not exist, create it, 609 609 // if there's something more serious, then do fail! 610 if (e. rc() == VERR_FILE_NOT_FOUND)610 if (e.getStatus() == VERR_FILE_NOT_FOUND) 611 611 fCreate = true; 612 612 else
Note:
See TracChangeset
for help on using the changeset viewer.