Changeset 28888 in vbox for trunk/src/VBox/Frontends/VBoxManage
- Timestamp:
- Apr 29, 2010 11:50:05 AM (15 years ago)
- Location:
- trunk/src/VBox/Frontends/VBoxManage
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VBoxManage/VBoxManageDisk.cpp
r28800 r28888 109 109 else if (!RTStrICmp(psz, "writethrough")) 110 110 DiskType = MediumType_Writethrough; 111 else if (!RTStrICmp(psz, "shareable")) 112 DiskType = MediumType_Shareable; 111 113 else 112 114 rc = VERR_PARSE_ERROR; … … 1231 1233 typeStr = "writethrough"; 1232 1234 break; 1235 case MediumType_Shareable: 1236 typeStr = "shareable"; 1237 break; 1233 1238 } 1234 1239 RTPrintf("Type: %s\n", typeStr); -
trunk/src/VBox/Frontends/VBoxManage/VBoxManageList.cpp
r28800 r28888 124 124 case MediumType_Writethrough: 125 125 typeStr = "writethrough"; 126 break; 127 case MediumType_Shareable: 128 typeStr = "shareable"; 126 129 break; 127 130 }
Note:
See TracChangeset
for help on using the changeset viewer.