Changeset 37602 in vbox
- Timestamp:
- Jun 23, 2011 8:17:50 AM (14 years ago)
- svn:sync-xref-src-repo-rev:
- 72448
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VBoxManage/VBoxManageMisc.cpp
r37567 r37602 333 333 const char *pszTrgBaseFolder = NULL; 334 334 bool fRegister = false; 335 RTUUID trgUuid;335 Bstr bstrUuid; 336 336 337 337 int c; … … 368 368 369 369 case 'u': // --uuid 370 RTUUID trgUuid; 370 371 if (RT_FAILURE(RTUuidFromStr(&trgUuid, ValueUnion.psz))) 371 372 return errorArgument("Invalid UUID format %s\n", ValueUnion.psz); 373 else 374 bstrUuid = Guid(trgUuid).toUtf16().raw(); 372 375 break; 373 376 … … 425 428 Bstr(pszTrgName).raw(), 426 429 NULL, 427 Guid(trgUuid).toUtf16().raw(),430 bstrUuid.raw(), 428 431 FALSE, 429 432 trgMachine.asOutParam()),
Note:
See TracChangeset
for help on using the changeset viewer.