Changeset 35085 in vbox
- Timestamp:
- Dec 14, 2010 2:09:12 PM (14 years ago)
- Location:
- trunk/src/VBox/Frontends/VBoxManage
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VBoxManage/VBoxManageDisk.cpp
r35037 r35085 109 109 else if (!RTStrICmp(psz, "shareable")) 110 110 DiskType = MediumType_Shareable; 111 else if (!RTStrICmp(psz, "readonly")) 112 DiskType = MediumType_Readonly; 113 else if (!RTStrICmp(psz, "multiattach")) 114 DiskType = MediumType_MultiAttach; 111 115 else 112 116 rc = VERR_PARSE_ERROR; … … 1006 1010 typeStr = "shareable"; 1007 1011 break; 1012 case MediumType_Readonly: 1013 typeStr = "readonly"; 1014 break; 1015 case MediumType_MultiAttach: 1016 typeStr = "multiattach"; 1017 break; 1008 1018 } 1009 1019 RTPrintf("Type: %s\n", typeStr); -
trunk/src/VBox/Frontends/VBoxManage/VBoxManageHelp.cpp
r35057 r35085 437 437 " [--medium none|emptydrive|\n" 438 438 " <uuid>|<filename>|host:<drive>|iscsi]\n" 439 " [--mtype normal|writethrough|immutable|shareable]\n" 439 " [--mtype normal|writethrough|immutable|shareable|\n" 440 " readonly|multiattach]\n" 440 441 " [--comment <text>]\n" 441 442 " [--passthrough on|off]\n" … … 491 492 RTStrmPrintf(pStrm, 492 493 "VBoxManage modifyhd <uuid>|<filename>\n" 493 " [--type normal|writethrough|immutable|shareable]\n" 494 " [--type normal|writethrough|immutable|shareable|\n" 495 " readonly|multiattach]\n" 494 496 " [--autoreset on|off]\n" 495 497 " [--compact]\n" -
trunk/src/VBox/Frontends/VBoxManage/VBoxManageList.cpp
r34244 r35085 142 142 case MediumType_Readonly: 143 143 typeStr = "readonly"; 144 break; 145 case MediumType_MultiAttach: 146 typeStr = "multiattach"; 144 147 break; 145 148 }
Note:
See TracChangeset
for help on using the changeset viewer.