Merge pull request #5587 from computezrmle/change_vboxmanage_defaults

Vboxwrapper - handling of outdated vboxmanage command options
This commit is contained in:
Vitalii Koshura 2024-04-19 19:29:36 +02:00 committed by GitHub
commit 238ff23a8c
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 2 additions and 1 deletions

View File

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

View File

@ -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)";
}