- VBOX: Clean up VirtualBox version information for all platforms.

This commit is contained in:
Rom Walton 2013-01-02 11:08:13 -05:00 committed by Oliver Bock
parent 4ee64625c1
commit 6c716f918f
2 changed files with 8 additions and 3 deletions

View File

@ -7995,4 +7995,11 @@ Rom 1 Jan 2013
calculating idle time from the XSS system on Linux.
client/
hostinfo_unix.cpp
hostinfo_unix.cpp
Rom 2 Jan 2013
- VBOX: Clean up VirtualBox version information for all platforms.
samples\vboxwrapper\
vbox.cpp

View File

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