mirror of https://github.com/BOINC/boinc.git
Merge pull request #5587 from computezrmle/change_vboxmanage_defaults
Vboxwrapper - handling of outdated vboxmanage command options
This commit is contained in:
commit
238ff23a8c
|
@ -593,7 +593,7 @@ bool VBOX_BASE::is_virtualbox_version_newer(int maj, int min, int rel) {
|
|||
if (min > vbox_minor) return false;
|
||||
if (rel < vbox_release) return true;
|
||||
}
|
||||
return false;
|
||||
return true;
|
||||
}
|
||||
|
||||
int VBOX_BASE::get_system_log(
|
||||
|
|
|
@ -1846,6 +1846,7 @@ int VBOX_VM::get_version_information(string& version_raw, string& version_displa
|
|||
);
|
||||
version_display = buf;
|
||||
} else {
|
||||
vboxlog_msg("VBoxManage version raw: %s", output.c_str());
|
||||
version_raw = "Unknown";
|
||||
version_display = "VirtualBox VboxManage Interface (Version: Unknown)";
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue