mirror of https://github.com/BOINC/boinc.git
VBOX: One additional fix for RPC_S_SERVER_UNAVAILABLE.
This commit is contained in:
parent
0116f9485f
commit
9b4347c3fc
|
@ -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;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue