Changeset 24601 in vbox for trunk/src/VBox/Frontends
- Timestamp:
- Nov 11, 2009 7:33:28 PM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VBoxManage/VBoxManageInfo.cpp
r24416 r24601 571 571 storageCtl->COMGETTER(Name)(storageCtlName.asOutParam()); 572 572 if (details == VMINFO_MACHINEREADABLE) 573 RTPrintf("storagecontrollername%u :\"%lS\"\n", i, storageCtlName.raw());573 RTPrintf("storagecontrollername%u=\"%lS\"\n", i, storageCtlName.raw()); 574 574 else 575 575 RTPrintf("Storage Controller Name (%u): %lS\n", i, storageCtlName.raw()); … … 604 604 } 605 605 if (details == VMINFO_MACHINEREADABLE) 606 RTPrintf("storagecontrollertype%u :=\"%s\"\n", i, pszCtl);606 RTPrintf("storagecontrollertype%u=\"%s\"\n", i, pszCtl); 607 607 else 608 608 RTPrintf("Storage Controller Type (%u): %s\n", i, pszCtl); … … 610 610 storageCtl->COMGETTER(Instance)(&ulValue); 611 611 if (details == VMINFO_MACHINEREADABLE) 612 RTPrintf("storagecontrollerinstance%u :\"%lu\"\n", i, ulValue);612 RTPrintf("storagecontrollerinstance%u=\"%lu\"\n", i, ulValue); 613 613 else 614 614 RTPrintf("Storage Controller Instance Number (%u): %lu\n", i, ulValue); … … 616 616 storageCtl->COMGETTER(MaxPortCount)(&ulValue); 617 617 if (details == VMINFO_MACHINEREADABLE) 618 RTPrintf("storagecontrollermaxportcount%u :\"%lu\"\n", i, ulValue);618 RTPrintf("storagecontrollermaxportcount%u=\"%lu\"\n", i, ulValue); 619 619 else 620 620 RTPrintf("Storage Controller Max Port Count (%u): %lu\n", i, ulValue); … … 622 622 storageCtl->COMGETTER(PortCount)(&ulValue); 623 623 if (details == VMINFO_MACHINEREADABLE) 624 RTPrintf("storagecontrollerportcount%u :\"%lu\"\n", i, ulValue);624 RTPrintf("storagecontrollerportcount%u=\"%lu\"\n", i, ulValue); 625 625 else 626 626 RTPrintf("Storage Controller Port Count (%u): %lu\n", i, ulValue); … … 659 659 if (details == VMINFO_MACHINEREADABLE) 660 660 { 661 RTPrintf("\"%lS \"-%d-%d=\"%lS\"\n", storageCtlName.raw(),661 RTPrintf("\"%lS-%d-%d\"=\"%lS\"\n", storageCtlName.raw(), 662 662 i, k, filePath.raw()); 663 RTPrintf("\"%lS \"-ImageUUID-%d-%d=\"%s\"\n",663 RTPrintf("\"%lS-ImageUUID-%d-%d\"=\"%s\"\n", 664 664 storageCtlName.raw(), i, k, Utf8Str(uuid).raw()); 665 665 if (fPassthrough) 666 RTPrintf("\"%lS \"-dvdpassthrough=\"%s\"\n", storageCtlName.raw(),666 RTPrintf("\"%lS-dvdpassthrough\"=\"%s\"\n", storageCtlName.raw(), 667 667 fPassthrough ? "on" : "off"); 668 668 } … … 680 680 { 681 681 if (details == VMINFO_MACHINEREADABLE) 682 RTPrintf("\"%lS \"-%d-%d=\"none\"\n", storageCtlName.raw(), i, k);682 RTPrintf("\"%lS-%d-%d\"=\"none\"\n", storageCtlName.raw(), i, k); 683 683 } 684 684 }
Note:
See TracChangeset
for help on using the changeset viewer.