VBOX: One additional fix for RPC_S_SERVER_UNAVAILABLE.

This commit is contained in:
Rom Walton 2014-02-11 16:25:28 -05:00
parent 0116f9485f
commit 9b4347c3fc
1 changed files with 2 additions and 4 deletions

View File

@ -2927,11 +2927,9 @@ CLEANUP:
#endif #endif
// Is this a RPC_S_SERVER_UNAVAILABLE returned by vboxmanage? // Is this a RPC_S_SERVER_UNAVAILABLE returned by vboxmanage?
if (!retval) {
if (output.find("RPC_S_SERVER_UNAVAILABLE") != string::npos) { if (output.find("RPC_S_SERVER_UNAVAILABLE") != string::npos) {
retval = RPC_S_SERVER_UNAVAILABLE; retval = RPC_S_SERVER_UNAVAILABLE;
} }
}
return retval; return retval;
} }