We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 213028b + 9d74013 commit cb609adCopy full SHA for cb609ad
samples/vboxwrapper/vbox_vboxmanage.cpp
@@ -605,9 +605,7 @@ namespace vboxmanage {
605
//
606
607
type_line = output;
608
- transform(type_line.cbegin(), type_line.cend(),
609
- type_line.begin(), [](unsigned char c) { return tolower(c); });
610
- type_start = type_line.find("\ntype: ") + 1;
+ type_start = type_line.find("\nType: ") + 1;
611
type_end = type_line.find("\n", type_start) - type_start;
612
type_line = type_line.substr(type_start, type_end);
613
0 commit comments