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:
Rom Walton 2014-02-06 10:15:52 -05:00
parent 9220ceb02a
commit 9b041f7004
1 changed files with 2 additions and 2 deletions

View File

@ -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());