Changeset 73003 in vbox for trunk/src/VBox/Main/src-server/ApplianceImplExport.cpp
- Timestamp:
- Jul 9, 2018 11:09:32 AM (7 years ago)
- svn:sync-xref-src-repo-rev:
- 123555
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/src-server/ApplianceImplExport.cpp
r72476 r73003 490 490 throw setError(VBOX_E_NOT_SUPPORTED, 491 491 tr("Cannot handle medium attachment: channel is %d, device is %d"), lChannel, lDevice); 492 break;492 break; 493 493 494 494 case StorageBus_SATA: 495 495 lChannelVsys = lChannel; // should be between 0 and 29 496 496 lControllerVsys = lSATAControllerIndex; 497 break;497 break; 498 498 499 499 case StorageBus_SCSI: … … 501 501 lChannelVsys = lChannel; // should be between 0 and 15 502 502 lControllerVsys = lSCSIControllerIndex; 503 break;503 break; 504 504 505 505 case StorageBus_Floppy: 506 506 lChannelVsys = 0; 507 507 lControllerVsys = 0; 508 break;508 break; 509 509 510 510 default: … … 512 512 tr("Cannot handle medium attachment: storageBus is %d, channel is %d, device is %d"), 513 513 storageBus, lChannel, lDevice); 514 break;515 514 } 516 515
Note:
See TracChangeset
for help on using the changeset viewer.