Changeset 31151 in vbox
- Timestamp:
- Jul 27, 2010 7:18:02 PM (15 years ago)
- svn:sync-xref-src-repo-rev:
- 64127
- Location:
- trunk/src/VBox/Frontends/VBoxManage
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VBoxManage/VBoxManageDisk.cpp
r28888 r31151 228 228 vrc = parseDiskType(ValueUnion.psz, &DiskType); 229 229 if ( RT_FAILURE(vrc) 230 || (DiskType != MediumType_Normal && DiskType != MediumType_Writethrough)) 230 || ( DiskType != MediumType_Normal 231 && DiskType != MediumType_Writethrough 232 && DiskType != MediumType_Shareable)) 231 233 return errorArgument("Invalid hard disk type '%s'", ValueUnion.psz); 232 234 break; -
trunk/src/VBox/Frontends/VBoxManage/VBoxManageHelp.cpp
r31125 r31151 481 481 " [--format VDI|VMDK|VHD] (default: VDI)\n" 482 482 " [--variant Standard,Fixed,Split2G,Stream,ESX]\n" 483 " [--type normal|writethrough| "483 " [--type normal|writethrough|\n" 484 484 " shareable] (default: normal)\n" 485 485 " [--comment <comment>]\n"
Note:
See TracChangeset
for help on using the changeset viewer.