VirtualBox

Changeset 24601 in vbox for trunk/src/VBox/Frontends


Ignore:
Timestamp:
Nov 11, 2009 7:33:28 PM (15 years ago)
Author:
vboxsync
Message:

Frontends/VBoxManage: fix the storage controller output of "VBoxManage showvminfo --machinereadable" to use = as separator

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/Frontends/VBoxManage/VBoxManageInfo.cpp

    r24416 r24601  
    571571        storageCtl->COMGETTER(Name)(storageCtlName.asOutParam());
    572572        if (details == VMINFO_MACHINEREADABLE)
    573             RTPrintf("storagecontrollername%u:\"%lS\"\n", i, storageCtlName.raw());
     573            RTPrintf("storagecontrollername%u=\"%lS\"\n", i, storageCtlName.raw());
    574574        else
    575575            RTPrintf("Storage Controller Name (%u):            %lS\n", i, storageCtlName.raw());
     
    604604        }
    605605        if (details == VMINFO_MACHINEREADABLE)
    606             RTPrintf("storagecontrollertype%u:=\"%s\"\n", i, pszCtl);
     606            RTPrintf("storagecontrollertype%u=\"%s\"\n", i, pszCtl);
    607607        else
    608608            RTPrintf("Storage Controller Type (%u):            %s\n", i, pszCtl);
     
    610610        storageCtl->COMGETTER(Instance)(&ulValue);
    611611        if (details == VMINFO_MACHINEREADABLE)
    612             RTPrintf("storagecontrollerinstance%u:\"%lu\"\n", i, ulValue);
     612            RTPrintf("storagecontrollerinstance%u=\"%lu\"\n", i, ulValue);
    613613        else
    614614            RTPrintf("Storage Controller Instance Number (%u): %lu\n", i, ulValue);
     
    616616        storageCtl->COMGETTER(MaxPortCount)(&ulValue);
    617617        if (details == VMINFO_MACHINEREADABLE)
    618             RTPrintf("storagecontrollermaxportcount%u:\"%lu\"\n", i, ulValue);
     618            RTPrintf("storagecontrollermaxportcount%u=\"%lu\"\n", i, ulValue);
    619619        else
    620620            RTPrintf("Storage Controller Max Port Count (%u):  %lu\n", i, ulValue);
     
    622622        storageCtl->COMGETTER(PortCount)(&ulValue);
    623623        if (details == VMINFO_MACHINEREADABLE)
    624             RTPrintf("storagecontrollerportcount%u:\"%lu\"\n", i, ulValue);
     624            RTPrintf("storagecontrollerportcount%u=\"%lu\"\n", i, ulValue);
    625625        else
    626626            RTPrintf("Storage Controller Port Count (%u):      %lu\n", i, ulValue);
     
    659659                    if (details == VMINFO_MACHINEREADABLE)
    660660                    {
    661                         RTPrintf("\"%lS\"-%d-%d=\"%lS\"\n", storageCtlName.raw(),
     661                        RTPrintf("\"%lS-%d-%d\"=\"%lS\"\n", storageCtlName.raw(),
    662662                                 i, k, filePath.raw());
    663                         RTPrintf("\"%lS\"-ImageUUID-%d-%d=\"%s\"\n",
     663                        RTPrintf("\"%lS-ImageUUID-%d-%d\"=\"%s\"\n",
    664664                                 storageCtlName.raw(), i, k, Utf8Str(uuid).raw());
    665665                        if (fPassthrough)
    666                             RTPrintf("\"%lS\"-dvdpassthrough=\"%s\"\n", storageCtlName.raw(),
     666                            RTPrintf("\"%lS-dvdpassthrough\"=\"%s\"\n", storageCtlName.raw(),
    667667                                     fPassthrough ? "on" : "off");
    668668                    }
     
    680680                {
    681681                    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);
    683683                }
    684684            }
Note: See TracChangeset for help on using the changeset viewer.

© 2024 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette