From 6c716f918f0d390a02c39312fbef79f96097065c Mon Sep 17 00:00:00 2001 From: Rom Walton Date: Wed, 2 Jan 2013 11:08:13 -0500 Subject: [PATCH] - VBOX: Clean up VirtualBox version information for all platforms. --- checkin_notes | 9 ++++++++- samples/vboxwrapper/vbox.cpp | 2 -- 2 files changed, 8 insertions(+), 3 deletions(-) diff --git a/checkin_notes b/checkin_notes index c396ad3814..52c4f77a59 100644 --- a/checkin_notes +++ b/checkin_notes @@ -7995,4 +7995,11 @@ Rom 1 Jan 2013 calculating idle time from the XSS system on Linux. client/ - hostinfo_unix.cpp \ No newline at end of file + hostinfo_unix.cpp + +Rom 2 Jan 2013 + - VBOX: Clean up VirtualBox version information for all platforms. + + samples\vboxwrapper\ + vbox.cpp + \ No newline at end of file diff --git a/samples/vboxwrapper/vbox.cpp b/samples/vboxwrapper/vbox.cpp index 3ea8585f7c..00c5f2eeeb 100644 --- a/samples/vboxwrapper/vbox.cpp +++ b/samples/vboxwrapper/vbox.cpp @@ -215,7 +215,6 @@ int VBOX_VM::initialize() { command = "--version "; vbm_popen(command, output, "version check"); -#ifdef _WIN32 // Remove \r or \n from the output spew string::iterator iter = output.begin(); while (iter != output.end()) { @@ -225,7 +224,6 @@ int VBOX_VM::initialize() { ++iter; } } -#endif virtualbox_version = "VirtualBox " + output;