Changeset 11444 in vbox for trunk/src/VBox/Frontends/VBoxManage
- Timestamp:
- Aug 15, 2008 2:33:02 PM (17 years ago)
- svn:sync-xref-src-repo-rev:
- 34825
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VBoxManage/VBoxInternalManage.cpp
r11435 r11444 1277 1277 else 1278 1278 { 1279 vrc = VDOpen(pDisk, "VMDK", Utf8Str(src).raw(), VD_OPEN_FLAGS_NORMAL );1279 vrc = VDOpen(pDisk, "VMDK", Utf8Str(src).raw(), VD_OPEN_FLAGS_NORMAL, NULL); 1280 1280 if (VBOX_FAILURE(vrc)) 1281 1281 { … … 1284 1284 else 1285 1285 { 1286 vrc = VDCopy(pDisk, 0, pDisk, "VMDK", Utf8Str(dst).raw(), true, 0, NULL, NULL );1286 vrc = VDCopy(pDisk, 0, pDisk, "VMDK", Utf8Str(dst).raw(), true, 0, NULL, NULL, NULL); 1287 1287 if (VBOX_FAILURE(vrc)) 1288 1288 { … … 1389 1389 RTStrFree(pszFormat); 1390 1390 } 1391 vrc = VDOpen(pDisk, Utf8Str(srcformat).raw(), Utf8Str(src).raw(), VD_OPEN_FLAGS_READONLY );1391 vrc = VDOpen(pDisk, Utf8Str(srcformat).raw(), Utf8Str(src).raw(), VD_OPEN_FLAGS_READONLY, NULL); 1392 1392 if (VBOX_FAILURE(vrc)) 1393 1393 {
Note:
See TracChangeset
for help on using the changeset viewer.