mirror of https://github.com/BOINC/boinc.git
VBOX: Fix case of virtualbox and vboxheadless for platforms that are case sensitive. The code is currently disabled anyway, but if we re-enable it at some point we might as well avoid the bug.
This commit is contained in:
parent
9220ceb02a
commit
9b041f7004
|
@ -2443,9 +2443,9 @@ int VBOX_VM::launch_vboxvm() {
|
|||
// Construct the command line parameters
|
||||
//
|
||||
if (headless) {
|
||||
argv[0] = const_cast<char*>("vboxheadless.exe");
|
||||
argv[0] = const_cast<char*>("VboxHeadless.exe");
|
||||
} else {
|
||||
argv[0] = const_cast<char*>("virtualbox.exe");
|
||||
argv[0] = const_cast<char*>("VirtualBox.exe");
|
||||
}
|
||||
argv[1] = const_cast<char*>("--startvm");
|
||||
argv[2] = const_cast<char*>(vm_name.c_str());
|
||||
|
|
Loading…
Reference in New Issue