Revert "client: fix build breaks."

This reverts commit 3d01d36a6e.
This commit is contained in:
Rom Walton 2014-12-17 14:49:23 -05:00
parent 3d01d36a6e
commit 3766eb7e63
2 changed files with 7 additions and 2 deletions

View File

@ -1576,7 +1576,10 @@ int HOST_INFO::get_host_info(bool init) {
// a run of the client
//
get_virtualbox_version();
if (!cc_config.dont_use_vbox) {
get_virtualbox_version();
}
get_cpu_info();
get_cpu_count();
get_memory_info();

View File

@ -1214,7 +1214,9 @@ int HOST_INFO::get_host_info(bool init) {
get_os_information(
os_name, sizeof(os_name), os_version, sizeof(os_version)
);
get_virtualbox_version();
if (!cc_config.dont_use_vbox) {
get_virtualbox_version();
}
get_processor_info(
p_vendor, sizeof(p_vendor),
p_model, sizeof(p_model),